Questions from Beginners MQL5 MT5 MetaTrader 5 - page 502
You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
Good afternoon, could you please tell me how to programmatically write the type of line chart (there is also a bar chart and a candlestick chart - this is understandable), which is necessary for writing the trading conditions?
where chart_id - chart ID, or 0 - for the current
Ah, you can do that too...
double Price_Line_1 = iMA(Symbol(),0,1,0,MODE_SMMA,PRICE_CLOSE,1);
Ah, you can do that too...
double Price_Line_1 = iMA(Symbol(),0,1,0,MODE_SMMA,PRICE_CLOSE,1);
You can also scratch the right ear with the middle finger of your left foot...
iMA(Symbol(),0,1,0,MODE_SMMA,PRICE_CLOSE,1) equals Close[1] and equals iClose(_Symbol, PERIOD_CURRENT, 1)
Hello, could you please tell me how to implement a demo for 1 currency pair and 1 time frame in the indicator
Karputov Vladimir:
??? Перефразируйте свой вопрос, пожалуйста.
Hello, could you please tell me how to implement a demo for 1 currency pair and 1 timeframe in the indicator
https://docs.mql4.com/ru/check/isdemo
and manually prescribe the currency pair and timeframe, if they do not match then exit the start.
like this.
The indicator should work only on 1 currency pair and on a certain timeframe of this currency pair
https://docs.mql4.com/ru/check/isdemo
and manually prescribe the currency pair and timeframe, if they do not match then exit the start.
like this.