DislikedТictaк хуесос бандеровский, скоро останешься без соей родины: будешь в землянке жить.. в Канаде...
Ignored
https://www.mql5.com/ru/users/torkit
1
1
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Тictaк хуесос бандеровский, скоро останешься без соей родины: будешь в землянке жить.. в Канаде...
Ignored
DislikedIs there any MT4 indicator like the TradingView ind "MultiTimeFrame Chart" enabling a higher TF High and Low highlighted with a box ? In the screenshot you can see a M1 chart and the Boxes are showing the High and Low of M5 TF.{image}Ignored
DislikedHello, could someone turn this into a green/red histogram, right now its just yellow. Thank you {file} {file}Ignored
DislikedHello everyone, need this section of code to extend last clicked object x bars to the right on daily chart instead of calendar days, appreciate any help break; case Key_Extend_Last_Object_Clicked: // Extend last clicked object { datetime originaldate = (datetime)ObjectGetInteger(0,lastobjclicked,OBJPROP_TIME2); datetime newdate = originaldate + (60*60*24*NumberOfDaysToExtend); ObjectSetInteger(0,lastobjclicked,OBJPROP_TIME2,newdate); } break;Ignored
break;
case Key_Extend_Last_Object_Clicked: // Extend last clicked object
{
datetime newdate = Time[0]+60*_Period*x;
ObjectSetInteger(0,lastobjclicked,OBJPROP_TIME2,newdate);
}
break;
break;
case Key_Extend_Last_Object_Clicked: // Extend last clicked object
{
datetime originaldate = (datetime)ObjectGetInteger(0,lastobjclicked,OBJPROP_TIME2);
datetime newdate = originaldate + (60*_Period*x);
ObjectSetInteger(0,lastobjclicked,OBJPROP_TIME2,newdate);
}
break; DislikedHi Coders If I supply the mql file for an mt4 indicator. Is it possible to filter its alerts so that it only alerts sell when below a moving average and only buy when above the moving average? With thanks DrewIgnored
DislikedHi Coders If I supply the mql file for an mt4 indicator.
Is it possible to filter its alerts so that it only alerts sell when below a moving average and only buy when above the moving average? With thanks DrewIgnored
DislikedHey Guys, i want to learn and improve my MQL4 skills. I think the best way to do this is to practice. Unfortunately sometimes I don`t have any nice idea which i can implement in a Expert Advisor / Indicator. So if any of you is interested, please post in this forum your ideas and i will try to implement it into mql4. AndiIgnored
Disliked{quote} break; case Key_Extend_Last_Object_Clicked: // Extend last clicked object { datetime newdate = Time[0]+60*_Period*x; ObjectSetInteger(0,lastobjclicked,OBJPROP_TIME2,newdate); } break; Or: break; case Key_Extend_Last_Object_Clicked: // Extend last clicked object { datetime originaldate = (datetime)ObjectGetInteger(0,lastobjclicked,OBJPROP_TIME2); datetime newdate = originaldate + (60*_Period*x); ObjectSetInteger(0,lastobjclicked,OBJPROP_TIME2,newdate); } break; Depends what exactly you want to do.Ignored
Disliked{quote} break; case Key_Extend_Last_Object_Clicked: // Extend last clicked object { datetime newdate = Time[0]+60*_Period*x; ObjectSetInteger(0,lastobjclicked,OBJPROP_TIME2,newdate); } break; Or: break; case Key_Extend_Last_Object_Clicked: // Extend last clicked object { datetime originaldate = (datetime)ObjectGetInteger(0,lastobjclicked,OBJPROP_TIME2); datetime newdate = originaldate + (60*_Period*x); ObjectSetInteger(0,lastobjclicked,OBJPROP_TIME2,newdate); } break; Depends what exactly you want to do.Ignored
Disliked{quote} P.S. Just on Daily, it counts Sat, Sun. Is there a trick for that, need to extend 10,20,30 ... trading daysIgnored