Does anyone have this MTF indicator?
or a similar one?
or a similar one?
Attached File(s)
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
DislikedHello here, i'm a novice in making indicators. I don't know who can help me make this Volumatic Variable Index Dynamic Average by Big Beluga into EX file for MT4. I've looked for it everywhere but couldnt see it other than what i saw on this link https://usethinkscript.com/threads/v...korswim.19824/ I'll so much appreciate it if anyone can help me out. ThanksIgnored
Disliked{quote} Great daily open line indicator but needs the price label added... .... please{image} as shown. Thanks
Ignored
DislikedHello here, i'm a novice in making indicators. I don't know who can help me make this Volumatic Variable Index Dynamic Average by Big Beluga into EX file for MT4. I've looked for it everywhere but couldnt see it other than what i saw on this link https://usethinkscript.com/threads/v...korswim.19824/ I'll so much appreciate it if anyone can help me out. ThanksIgnored
DislikedFor mt4 Vwap_mtf - vwap mtf with bands - band options: std, vol weighted std, percent {image} {file}Ignored
DislikedI found this EA at the link: https://www.forexfactory.com/thread/...-pending-order But the EA is not working and closes by itself, can you fix it? Thank you in advance for your attention and help. {file} {image}Ignored
//+------------------------------------------------------------------+
void OnTick(){
ResetLastError();
bool tradeOn=false;
for (int pos=0; pos<OrdersTotal();pos++){
if (!OrderSelect(pos, SELECT_BY_POS)) continue;
if (OrderType()<2) {tradeOn=true;break;} else continue;
}
if (tradeOn){
for (pos=0; pos<OrdersTotal();pos++){
if (!OrderSelect(pos, SELECT_BY_POS)) continue;
if (OrderType()>1) if (!OrderDelete(OrderTicket())) err_msg();
}
}
}
//+------------------------------------------------------------------+
void err_msg(){
string msg="Error while closing : Expert "+WindowExpertName()+" is removed ! Err n° ="+IntegerToString(GetLastError());
Alert(msg);
Print(msg);
PlaySound("alert.wav");
ExpertRemove();
} Disliked{quote} This is a very basic, primitive code which was most likely meant to work like a script. A script works once, it does what it's meant to do, and gets removed from the chart automatically. This EA looks for pending orders, and the deletes the first pending order, and issues an alert, a print, and sound. And in the message part it also executes ExpertRemove(); which removes the EA from the chart. //+------------------------------------------------------------------+ void OnTick(){ ResetLastError(); bool tradeOn=false; for (int pos=0; pos<OrdersTotal();pos++){...Ignored
Disliked{quote} Let me explain my situation: I use an EA that start two pending orders (buy stop and sell stop), and when one order is activated it automatically closes the remaining order but sometimes the EA doesn't close the remaining pending order, and I have to close it manually. If I don't close the remaining order, the EA won't open new orders until the remaining order is closed or activated. I think the ExpertRemove function is not necessary in this situation. Is there any way to do this? Would really appreciate if you could help meIgnored
DislikedJust wondering why this file wont load please experts here kindly help to wake this file up from inactive. Thanks {file}Ignored