Disliked{quote}you can change the timeframe with setting TimeFrame for HA CALculation = default is H4Ignored
building multi-pair multi-timeframe scanner 48 replies
Multi Pair Average Range Scanner Alerts 69 replies
MTF Multi pair MA cross dashboard with alerts 4 replies
Pair-based equity alerts for MT4 0 replies
Disliked{quote}you can change the timeframe with setting TimeFrame for HA CALculation = default is H4Ignored
Disliked{quote} Sorry, missed that. {quote} You don't want it to scan multi timeframes at the same time?Ignored
Disliked{quote} you mean like if heiken ashi color all bullish for m30,h1,h4 at same time do Alert?Ignored
Disliked{quote} i could do a string option where you type in the timeframes ex h1,h4,d1 and if all the HA color line up do alert have it as a separate optional optionIgnored
Disliked{quote} Not necessarily all tfs should line up for alerts, but let's say for XX symbol at 4p.m. H4 tf gives alert, but H1 doesn't, so it will do alert for H4 tf only.Ignored
DislikedHi Nick. thanks a lot for all your indicators. Been testing using those indicators for Camarilla Fourth Layer Breakout Strategy. Your multi pair pivot point scanner helps in providing the alerts once the price reaches the R4 or S4. I use 2 day CPR relation & 2 day Camarilla relation on entry decision. The success rate using this strategy is almost 90%. I was wondering if the alerts could be set through email options. {image}Ignored
DislikedHi Nick. thanks a lot for all your indicators. Been testing using those indicators for Camarilla Fourth Layer Breakout Strategy. Your multi pair pivot point scanner helps in providing the alerts once the price reaches the R4 or S4. I use 2 day CPR relation & 2 day Camarilla relation on entry decision. The success rate using this strategy is almost 90%. I was wondering if the alerts could be set through email options. {image}Ignored
Disliked{quote} Would you be willing to elaborate on this strategy? I have been tinkering with a new idea I had. I didn't know anyone else had a thread on it already. I've been watching Fibonicci Pivots and trading the breakout of the S100 or R100 area. I've had good success so far. I'm interested in the Fourth Layer Breakout Strategy you speak of. Do you care to tell me your rules or maybe point me in the right direction of a thread that i can learn your strategy?Ignored
Disliked{quote} Would you be willing to elaborate on this strategy? I have been tinkering with a new idea I had. I didn't know anyone else had a thread on it already. I've been watching Fibonicci Pivots and trading the breakout of the S100 or R100 area. I've had good success so far. I'm interested in the Fourth Layer Breakout Strategy you speak of. Do you care to tell me your rules or maybe point me in the right direction of a thread that i can learn your strategy?Ignored
Dislikedheres a Elder Impulse System multi pair scanner alerts,arrows,candle colors and histogram indicators Elder_Impulse_System.mq4 needs to be in indicator folder the scanner and arrows indicator calls it with iCustom() "The Impulse System encourages you to enter cautiously but exit fast. This is the professional approach to trading, the total opposite of the amateur's style. Beginners jump into trades without thinking too much and take forever to get out, hoping and waiting for the market to turn their way." - Dr. Alexander Elder https://www.youtube.com/watch?v=BLpy3h5gwBo...Ignored
void OnChartEvent(const int id, // Event identifier const long& lparam, // Event parameter of long type const double& dparam, // Event parameter of double type const string& sparam) // Event parameter of string type { if(id==CHARTEVENT_CHART_CHANGE) { int chartScaleNum=ChartScaleGet(0); int candleWidth=0; switch(chartScaleNum) { case 0: candleWidth=0; break; case 1: candleWidth=0; break; case 2: candleWidth=2; break; case 3: candleWidth=3; break; case 4: candleWidth=6 ; break; case 5: candleWidth=13 ; break; } SetIndexStyle(0,DRAW_HISTOGRAM, EMPTY, candleWidth); SetIndexStyle(1,DRAW_HISTOGRAM, EMPTY, candleWidth); SetIndexStyle(2,DRAW_HISTOGRAM, EMPTY, candleWidth); SetIndexStyle(3,DRAW_HISTOGRAM, EMPTY, candleWidth); } }