Forum

Hotkeys for Buy and Sell for MT5

Can somebody make script or indicator to buy and sell at market price with a user-defined key of the keyboard

How to have 2 PAIRS of DRAW_FILLING in 1 Indicator

I want to have 2 clouds with DRAW_FILLING in 1 indicator. I duplicated all the buffers of the official DRAW_FILLING.mq5 https://www.mql5.com/en/docs/customind/indicators_examples/draw_filling and the result is that I have only 1 ribbon of MAs. Notice in the ''data window'' of MT5, there are 3

Extern variables are not shown in the setting pane

Here is the official Custom Moving Average.mq5 where i replaced ''input'' by ''extern'' and all the inputs disappear from the dialog box. What is going on? //+------------------------------------------------------------------+ //| Custom Moving Average.mq5 |

Cascading iMA with iRSI

I want to calculate the EMA of the RSI with using handles as much as possible. So I just create one iRSI handle, one iMA handle which takes the Handle_RSI of course but then I do not know how to print only the iMA(iRSI) on the screen

BUG : DRAW_FILLING and DRAW_HISTOGRAM2 can't have 2 instances in 1 indicator??

I want to have 2 fillings in 1 indicator, so I use DRAW_FILLING twice to get what i want (or DRAW_HISTOGRAM2 if I can't use DRAW_FILLING). For the base example, i use the official DRAW_FILLING.mq5 from https://www.mql5.com/en/docs/customind/indicators_examples/draw_filling The only change I did to