Disliked{quote} Possible? Yes. Will I do it? No. I don't want you to lose money!Ignored
That means it's a fail strategy
Thank you
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} Possible? Yes. Will I do it? No. I don't want you to lose money!Ignored
Disliked{quote} double TwoStDev = 2*iStdDev(_Symbol, timeframe, ma_period, ma_shift, ma_method, applied_price, shift);Ignored
Disliked{quote} thank you for your reply That means it's a fail strategy Thank you
Ignored
DislikedIs someone able to code EA mt4/mt5 for the last swing high/last swing low??? -description is on the picture -if you need more info, let me know and will answer Strategy for the EA: -find last swing low and after high is formed and price going down, Place a sell order when priced reached the line of last swing low -find last swing high and after low is formed and price going up, Place a buy order when priced reached the line of last swing high -Set a TP and SL Required inputs: Compounding: True or False. If True, the lot size will depend on account...Ignored
Disliked{quote} BE_EA: Change the name of this function to this: {image} Change the start() function like this: And change line 243 like this: {image} This will allow negative and positive BreakEven. DoBreakEven() will not be executed if BreakEven == 0; PS. If that doesn't work, you need to look into the DoBreakEven() function if the calculations allow for this. Just by looking at it, I don't know what the option if ( ALL==true ) does, because a floating position doesn't have OrderClosePrice(). OrderClosePrice() is only available for a closed trade, and...Ignored
Disliked{quote} But what you described is the normal fractals indicator, from your description what swings aren't picked up?Ignored
Disliked{quote} thank you master for your response, it was working without making the change, i just need to add a code or change something that will move the stoploss only in minus x amount in the current trade it dis-organize {image}Ignored
DislikedHi Good people. Kindly help add sound alert to this zigzag indicator - sound entry that can be edited in input window so I can set the sound as needed Also, I noticed that the indicator does not have the lines joining the arrows. Thanking you in anticipation {file}Ignored
Disliked{quote} You didn't change what I told you to change. Can't you see the images I posted? Or what is the problem?Ignored
Void DoBreakEven()
{
Void OnTick()//int start()
{
digit = MarketInfo(Symbol(),MODE_DIGITS);
spread = MarketInfo(Symbol(),MODE_SPREAD)*Point;
if (ScanTrades()<1) return(0);
else{
if (SL>0) StopLoss_and_TakeProfit();
if (BreakEven!=0) DoBreakEven();
} Disliked{quote} these are my changes, and with same errors Void DoBreakEven() { void onTick() { digit = MarketInfo(Symbol(),MODE_DIGITS); spread = MarketInfo(Symbol(),MODE_SPREAD)*Point; if (ScanTrades()<1) return(0); else{ if (SL>0) StopLoss_and_TakeProfit(); if (BreakEven>0) BreakEven(); }Ignored
Disliked{quote} You changed the name to DoBreakEven() - good. And you deleted the rest of the function? Did I tell you to delete anything? You changed start() to onTick() ... wrong, look again. You didn't change line 243 in my image.Ignored
Disliked{quote} am confused, because you said do start function like this() and under the start function in your image i saw void Ontick() so how do i join both int start() and void ontick?Ignored
Disliked{quote} Why do you see that specific situation and you don't see all of these? {image} All of those patterns are exactly the same, they meet exactly the same conditions, as far as code is concerned. Why you don't see them? And how will the code not see / ignore them?Ignored
Disliked{quote} i think he missed some point as far i know this is called AMD accumulation manipulation and distribution and i think left ranging /consolidation zone asian session and after Asian session high low taken out (which is called buy side liquidity or sell side liq) last high-low broken ea should trade open ..imho sorry for my bad englishIgnored
Disliked{quote} The conditions which you posted are insufficient. In order to plot a trendline we need the start time and the start price, and the end time and the end price. How does the indicator know where to start the trendline and where to end it? What are the specific conditions for finding the start Bar and the end Bar from which we can read the price data?Ignored