Relax Zone / Publications
Forum
Help! EA not excecuting code correctly
Hello everyone, I am working on an price EMA crossover expert advisor on metatrader 5 which should have the following conditions : 1. if price closes above ema ,an alert is triggered as well a buy stop pending order 2. if price closes below ema ,an alert is triggered as well a sell stop pending
Can't execute pending orders in expert advisor
Basically I am a beginner at coding but I am working at EMA price crossover EA whereas 1. if price of current symbol crosses above ema ,an alert is triggered as well a buy stop pending order 2. if price of current symbol crosses below ema ,an alert is triggered as well a sell stop pending order. 3
Can a developer please convert this tradingview supertrend indicator source code to MT5 formart?
1. //@version=4 2. study("Supertrend", overlay = true, format=format.price, precision=2, resolution="") 3. 4. Periods = input(title="ATR Period", type=input.integer, defval=10) 5. src = input(hl2, title="Source") 6. Multiplier = input(title="ATR Multiplier", type=input.float, step=0.1, defval=3.0)