input double lots = 0.01; input double slippage = 3; input int Fast_MA = 5; input int Slow_MA = 15; input double nampin = 5; input int maxnampin = 5; input int MagicNumber = 1…
input int TakeProfit = 5; input double Lots = 0.01; input int MagicNumber = 12345; input bool Weekend_Stop = true; input int Stop_Day_Of_Week1 = 1; input int Stop_Day_Of_Week2…
static int TicketNumber; int OnInit() { return (INIT_SUCCEEDED); } void OnDeinit(const int reason) { } void OnTick() { if (iOpen(Symbol(), 0, 1) < iClose(Symbol(), 0, 1) &a…
static int TicketNumber; int OnInit() { return (INIT_SUCCEEDED); } void OnDeinit(const int reason) { } void OnTick() { if (OrdersTotal() == 0 && iRSI(Symbol(), 0, 14, …
input double LOT = 0.01; input int SLIP = 1; input int MAGIC = 12345; static int TicketNumber; int OnInit() { return (INIT_SUCCEEDED); } void OnDeinit(const int reason) { } vo…
input int TakeProfit = 5; input double Lots = 0.01; input int MagicNumber = 12345; int OnInit() { return (INIT_SUCCEEDED); } void OnDeinit(const int reason) { } void OnTick() …
double PriceToPips(double price) { double pips = 0; int digits = (int)MarketInfo(Symbol(), MODE_DIGITS); if(digits == 3 || digits == 5) { pips = price * MathPow(10, digits) / …
//+------------------------------------------------------------------+ //| EMA计算.mq4 | //| Copyright 2023, 100w123 | //| https://100w123.com | //+-----------------------------…
//+------------------------------------------------------------------+ //| 带箭头信号的MACD.mq4 | //| Copyright 2023, 100w123 | //| https://100w123.com | //+------------------------…
//+------------------------------------------------------------------+ //| 绘制蜡烛图.mq4 | //| Copyright 2023, 100w123 | //| https://100w123.com | //+-----------------------------…