SilverTrend Rewritten by CrazyChart

0
(0)
姓名:
SilverTrend Rewritten by CrazyChart
作者: 集電極 (2006.10.16 13:22)
已下載: 5259
下載:
Indicator SilverTrend rewritten by CrazyChart is an alerting system similar to indicators of ASCTrend. If the indicator SilverTrend rewritten by CrazyChart meets lines, it alerts about necessity to buy or sell.

If the blue line meets the red line from bottom to top, a long position should be opened. If vice versa, a short position should be opened.

SilverTrend Rewritten by CrazyChart 1

4 評論 發表新評論, 請 登錄 或者 登記

Looks excellent! But only because it repaints the last 7 酒吧. Waste of time.

31.12.2009 21:27 rossiya

This indicator is crap! If you look into the codes, it used "future values" to compute the current indicator value, that means once the current price changes, the past indicator values will also change. It won't give you any profits.

Claude.

26.11.2008 01:07 claude

Dear,
Merry Christmass and happy new year.
This file is very important but I am facing the problem which is this file gives the sell/buy notification after the price has gone.Can you help me for the resolution of this file or maybe you have the updated file?
Thanks in advcnace for your support as usaul.
此致,
Jamal
03.01.2007 19:37 barakat

Dear,
I have downloaded this software and enabled the ring tone as below whenever get a sell or buy signal,but i faced a problem when i get any signal,which is i am receiving an alert notification for any signal each second and more than 80 times for each second and consequently my computer is freezing.

Thanks in advance for your support to solve this problem.
此致,
Jamal Barakat
======================
//+------------------------------------------------------------------+
//| Filename changed to ForexOFFTrend. mq4 by CrazyChart |
//| SilverTrend .mq4 |
//| SilverTrend rewritten by CrazyChart |
//| http://viac.ru/ |
//+------------------------------------------------------------------+

#property copyright "SilverTrend rewritten by CrazyChart"
#property link "http://viac.ru/ "
//----
#property indicator_chart_window
#property indicator_buffers 2
#property indicator_color1 Blue
#property indicator_color2 Red
//---- 輸入參數
extern int CountBars = 400;
extern int SSP = 7;
extern double Kmin = 1.6;
extern double Kmax = 50.6;
extern bool gAlert = True; // Switch to allow alerts
//---- buffers
double ExtMapBuffer1[];
double ExtMapBuffer2[];
//----
bool gSellAlertGiven = true; // Used to stop constant alerts
bool gBuyAlertGiven = true; // Used to stop constant alerts
//+------------------------------------------------------------------+
//| Custom indicator initialization function |
//+------------------------------------------------------------------+
int init()
{
//---- 指標
SetIndexStyle(0, DRAW_LINE, 0, 2);
SetIndexBuffer(0, ExtMapBuffer1);
SetIndexStyle(1, DRAW_LINE, 0, 2);
SetIndexBuffer(1, ExtMapBuffer2);
//----
如果(CountBars >= Bars)
CountBars = Bars;
SetIndexDrawBegin(0, 酒吧 - CountBars + SSP);
SetIndexDrawBegin(1, 酒吧 - CountBars + SSP);
//----
return(0);
}
//+------------------------------------------------------------------+
//| Custor indicator deinitialization function |
//+------------------------------------------------------------------+
int deinit()
{
return(0);
}
//+------------------------------------------------------------------+
//| Custom indicator iteration function |
//+------------------------------------------------------------------+
int start()
{
int i,
i2,
loopbegin,
counted_bars = IndicatorCounted();
double SsMax,
SsMin,
K,
val1,
val2,
smin,
smax,
價格;
如果(酒吧 <= SSP + 1)
return(0);
//---- initial zero
如果(counted_bars < SSP + 1)
{
為了(i = 1; 我 <= SSP; i++)
ExtMapBuffer1[CountBars-i] = 0. 0;
為了(i = 1; 我 <= SSP; i++)
ExtMapBuffer2[CountBars-i] = 0. 0;
}
為了(i = CountBars - SSP; 我 >= 0; i--)
{
SsMax = High[Highest(無效的, 0, MODE_HIGH, SSP, 我 - SSP + 1)];
SsMin = Low[Lowest(無效的, 0, MODE_LOW, SSP, 我 - SSP + 1)];
smin = NormalizeDouble((SsMin - (SsMax - SsMin)*Kmin / 100), Digits);
smax = NormalizeDouble((SsMax - (SsMax - SsMin)*Kmax / 100), Digits);
ExtMapBuffer1[i-SSP+6] = smax;
ExtMapBuffer2[i-SSP-1] = smax;
val1 = ExtMapBuffer1[0];
val2 = ExtMapBuffer2[0];
如果(val1 > val2)
{
評論("ïîêَïêà buy ", val1);
如果(gAlert == true && gBuyAlertGiven == true)
{
PlaySound("警報. wav");

警報("Buy signal at " + DoubleToStr(val1, Digits) + " 在 " + 時期() +
" 分鐘圖");
gBuyAlertGiven = true;
gSellAlertGiven = false;
}
}
如果(val1 < val2)
{
評論("ïًîنàوà sell ", val2);
如果(gAlert == true && gSellAlertGiven == true)
{
PlaySound("警報. wav");
警報("Sell signal at " + DoubleToStr(val2, Digits) + " 在 " + 時期()+
" 分鐘圖");
gBuyAlertGiven = false;
gSellAlertGiven=true;
}
}
}
//----
return(0);
}
//+------------------------------------------------------------------+

這篇文章有多有用?

點擊一顆星即可對其進行評分!

平均評分 0 / 5. 計票數: 0

目前還沒有投票! 成為第一個評價這篇文章的人.

很抱歉這篇文章對您沒有用!

讓我們改進這篇文章!

告訴我們如何改進這篇文章?



作者: 外匯維基團隊
我們是一支經驗豐富的外匯交易員團隊 [2000-2023] 致力於以我們自己的方式生活的人. 我們的主要目標是實現財務獨立和自由, 我們追求自我教育並在外匯市場上獲得豐富的經驗,以此作為實現自我可持續生活方式的手段.