SilverTrend_Signal

0
(0)
ชื่อ:
SilverTrend_Signal [ รู | ซีเอ็น ]
ผู้เขียน: นักเขียน (2008.01.08 11:26)
ดาวน์โหลดแล้ว: 4225
ดาวน์โหลด:
SilverTrend_Signal 1
SilverTrend Signal w[1].Alert.mq4 (3.4 Kb) ดู
ผู้เขียน: Ramdass - Conversion only

Indicator SilverTrend Signal.
SilverTrend_Signal 2
2 ความคิดเห็น หากต้องการโพสต์ความคิดเห็นใหม่, โปรด เข้าสู่ระบบ หรือ ลงทะเบียน

Samlup wrote:
how do i stop this indicator from giving so many audible signals and also so many Alerts in the Alert window....dont mind the arrows coming and going but the alert window and sound is driving me crazy. ขอบคุณ

This may work. I am not an MQL coder so not sure if it will effect its functionality or if I did this right.
 

Here is the version with NO alert.
 

//+------------------------------------------------------------------+
//| SilverTrend_Signal.mq4 |
//| Ramdass - Conversion only |
//+------------------------------------------------------------------+
#ลิขสิทธิ์ทรัพย์สิน "SilverTrend rewritten by CrazyChart"
#ลิงค์คุณสมบัติ "http://viac.ru/"
//----
#property indicator_chart_window
#property indicator_buffers 2
#property indicator_color1 Aqua
#property indicator_color2 Violet
//---- พารามิเตอร์อินพุต
extern int RISK=3;
extern int CountBars=350;
int SSP=9;
int counter=0;
//---- buffers
double val1[];
double val2[];
//+------------------------------------------------------------------+
//| Custom indicator initialization function |
//+------------------------------------------------------------------+
int init()
{
string short_name;
//---- indicator line
IndicatorBuffers(2);
SetIndexStyle(0,DRAW_ARROW);
SetIndexArrow(0,233);
SetIndexStyle(1,DRAW_ARROW);
SetIndexArrow(1,234);
SetIndexBuffer(0,val1);
SetIndexBuffer(1,val2);
//----
return(0);
}
//+------------------------------------------------------------------+
//| SilverTrend_Signal |
//+------------------------------------------------------------------+
int start()
{
ถ้า (CountBars>=Bars) CountBars=Bars;
SetIndexDrawBegin(0,Bars-CountBars+SSP);
SetIndexDrawBegin(1,Bars-CountBars+SSP);
int i,กะ,counted_bars=IndicatorCounted();
int i1,i2,K;
double Range,AvgRange,smin,smax,SsMax,SsMin,ราคา;
bool uptrend,เก่า;
//----
ถ้า(บาร์<=SSP+1) return(0);
//---- initial zero
ถ้า(counted_bars<SSP+1)
{
สำหรับ(i=1;ฉัน<=SSP;ฉัน ++) val1[CountBars-i]=0.0;
สำหรับ(i=1;ฉัน<=SSP;ฉัน ++) val2[CountBars-i]=0.0;
}
//----
K=33-RISK;
สำหรับ(shift=CountBars-SSP; กะ>=0; shift--)
{
Range=0;
AvgRange=0;
สำหรับ(i1=shift; i1<=shift+SSP; i1++)
{AvgRange=AvgRange+MathAbs(สูง[i1]-ต่ำ[i1]);
}
Range=AvgRange/(SSP+1);
//----
SsMax=High[กะ]; SsMin=Low[กะ];
สำหรับ(i2=shift;i2<=shift+SSP-1;i2++)
{
price=High[i2];
ถ้า(SsMax<ราคา) SsMax=price;
price=Low[i2];
ถ้า(SsMin>=price) SsMin=price;
}
smin=SsMin+(SsMax-SsMin)*K/100;
smax=SsMax-(SsMax-SsMin)*K/100;
val1[กะ]=0;
val2[กะ]=0;
ถ้า (ปิด[กะ]<smin)
{
uptrend=false;
}
ถ้า (ปิด[กะ]>smax)
{
uptrend=true;
}
ถ้า (uptrend!=old && uptrend==true)
{
val1[กะ]=Low[กะ]-Range*0.5;
counter=0;

{

}
}
ถ้า (uptrend!=old && uptrend==false)
{
counter=0;
val2[กะ]=High[กะ]+Range*0.5;

{

}
}
ความคิดเห็น(กะ);
old=uptrend;
}
return(0);
}
//+------------------------------------------------------------------+
 
 

Just open your existing copy and paste this over it and press compile and it will be the same as this one then.
 

'Ring Tone'

how do i stop this indicator from giving so many audible signals and also so many Alerts in the Alert window....dont mind the arrows coming and going but the alert window and sound is driving me crazy. ขอบคุณ

โพสต์นี้มีประโยชน์เพียงใด?

คลิกที่ดาวเพื่อให้คะแนน!

คะแนนเฉลี่ย 0 / 5. นับคะแนนเสียง: 0

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

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

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

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



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