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/ |
//+------------------------------------------------------------------+

#ลิขสิทธิ์ทรัพย์สิน "SilverTrend rewritten by CrazyChart"
#ลิงค์คุณสมบัติ "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; ฉัน ++)
ExtMapBuffer1[CountBars-i] = 0. 0;
สำหรับ(i = 1; ฉัน <= SSP; ฉัน ++)
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

ยังไม่มีคะแนนโหวต! เป็นคนแรกที่ให้คะแนนโพสต์นี้.

ขออภัยที่โพสต์นี้ไม่มีประโยชน์สำหรับคุณ!

ให้เราปรับปรุงโพสต์นี้!

บอกเราว่าเราจะปรับปรุงโพสต์นี้ได้อย่างไร?



ผู้เขียน: ทีมงาน Forex Wiki
เราคือทีมผู้ซื้อขาย Forex ที่มีประสบการณ์สูง [2000-2023] ที่อุทิศตนเพื่อใช้ชีวิตในแบบของเรา. วัตถุประสงค์หลักของเราคือการได้รับอิสรภาพทางการเงินและอิสรภาพ, และเราได้ติดตามการศึกษาด้วยตนเองและได้รับประสบการณ์ที่กว้างขวางในตลาด Forex เพื่อเป็นหนทางในการบรรลุวิถีชีวิตที่ยั่งยืนด้วยตนเอง.