Disliked{quote} Sure, lots of them. You want the current Tf only, or one that shows more Tfs?Ignored
Current TF and More TF both will be great
PaRaM
I will code your pivot EAs for no charge 28 replies
I will code your scalping EAs for no charge 163 replies
Oanda MT4 - Indicators and EAs not showing 2 replies
EAs and indicators relating to moutaki... 22 replies
InterbankFX has loaded its MT4 platform with custom EAs, indicators and scripts 1 reply
Disliked{quote} Sure, lots of them. You want the current Tf only, or one that shows more Tfs?Ignored
DislikedHi Everyone Looking for a Expert advisor for MT5 for setting fixed SL for trading Since im a scalper. Manually setting Stops for each trade is time consuming, Do you have any suggestion for potential indicator or trading panelIgnored
Disliked{quote} Thanks so much your help assist me to search, its laguerre indicator, i manage to get the mtf although i cant get the smooth correctly incase you are interested {file}Ignored
DislikedHello fellows, please help me on this; I need this indicator to show in the "alerts window" which pair is sending the alert, because I want to use two or more indicators {each one in a different pair},and at this time it only sent [level 2 alert], and i want something like this; [EURUSD level 2 alert] or [EURJPY level 2 alert] , etc. I already have a multipair dashboard, but unfortunately only sent the LEVEL 3 Alerts.. and I want the level 2 alerts.. I'll appreciate your help.. Thanks {file}Ignored
Disliked{quote} I don't remember, maybe a long time ago, if it was in my archives. I'm not using these ideas any more, they don't add anything to my decisions. If anything, they only provide missinformation. The Custom Candle one? It just plots pseudo-candles using ractangles, it is useless.Ignored
Disliked{quote} I added the symbol and timeframe to the alerts. You already have all the 3 levels alerts in the code. Look at your inputs panel - just set the given level to true, and you will have that alert, too. {file}Ignored
Disliked{quote} Might be useless as such, but in the form of a custom APB you get a nice chart. Custom H12 {image}Ignored
Disliked{quote} thanks for your kindness ... for your curiosity I have over the years (and still today) identified these indicators that I point out to you: white arrow and BullsEye Forecaster_SW v1.2 (gm) Alert MTFs the latter can be found in the last post of Genry_05 https://www.forexfactory.com/thread/...ading?page=221 {file}Ignored
Disliked{quote} Sure, I've been there a long time ago. I have tons of such candle plotting indicators I once created. I don't even remember them, now, because they just stay dormant in some archive folder. Candles don't mean anything, no matter how you plot them, they only represent what happened in the past. We can't make money in the past, and we never know what the price will do next, no matter how much information we can process, we can not predict the future. It's all just coincidence. The Holy Grail is YOU! So, if YOU are going to lose more than YOU...Ignored
Disliked{quote} thanks so much Sir the white arrow from DCE looks great i will test , i dont know how to use the forcaster it seems its reversedIgnored
Disliked{quote} yes, it's reversal ... it would replace (but not entirely) a previous compound indicator that I have been using for years The strategy I use in h1 is Ger40 vs UsaVix Being mirrored and inverted, the beginning of the trend would start from the Vix when there is the trigger signal: by returning the vertical of the time trigger signal in chart Ger40, you can trade downwards or upwards ...Ignored
DislikedIs there any indicator which shows time remaining for bar to close ??Ignored
Disliked{quote} When I load the indicator with that set file, and put some alert lines on, that get hit, it's a single sound, nothing unexpected happening.Ignored
Disliked{quote} as i tested more it looks like it happens when multiple alerts are on chart. i think especially the lower lineIgnored
int alertCount1=0;
int alertCount2=0;
int alertCount3=0;
if(alertCount1==0)
{
if(Level1_Alert==true && FP_BuferDn[0]!=0)
{
Alert(_Symbol+" "+as_string((ENUM_TIMEFRAMES)_Period)+" Level 1 Pivot High");
alertCount1++;
}
if(Level1_Alert==true && FP_BuferUp[0]!=0)
{
Alert(_Symbol+" "+as_string((ENUM_TIMEFRAMES)_Period)+" Level 1 Pivot Low");
alertCount1++;
}
}
if(alertCount2==0)
{
if(Level2_Alert==true && NP_BuferDn[0]!=0)
{
Alert(_Symbol+" "+as_string((ENUM_TIMEFRAMES)_Period)+" Level 2 Pivot High");
alertCount2++;
}
if(Level2_Alert==true && NP_BuferUp[0]!=0)
{
Alert(_Symbol+" "+as_string((ENUM_TIMEFRAMES)_Period)+" Level 2 Pivot Low");
alertCount2++;
}
}
if(alertCount3==0)
{
if(Level3_Alert==true && HP_BuferDn[0]!=0)
{
Alert(_Symbol+" "+as_string((ENUM_TIMEFRAMES)_Period)+" Level 3 Pivot High");
alertCount3++;
}
if(Level3_Alert==true && HP_BuferUp[0]!=0)
{
Alert(_Symbol+" "+as_string((ENUM_TIMEFRAMES)_Period)+" Level 3 Pivot Low");
alertCount3++;
}
}
if(FP_BuferDn[0]==0 && FP_BuferUp[0]==0) alertCount1=0;
if(NP_BuferDn[0]==0 && NP_BuferUp[0]==0) alertCount2=0;
if(HP_BuferDn[0]==0 && HP_BuferUp[0]==0) alertCount3=0;