natsirte
natsirte
Friends 2
natsirte
Added topic How to have a dynamic compilation on an EA?
Hello world ! I want to know how to create an EA with dynamic compilation ( F5 ) for example every 20 seconds . I saw that the F5 function was defined by VK_F5 (Thanks Coders Guru! ). But how to run ? this is my EA **********************************
natsirte
Added topic how to make a trade with a cycle?
hi I have an EA and I'd like to make it works with a cycle. I've got 5 variables double ma1 = iMA(NULL, 0, 1, 0, MODE_EMA, PRICE_CLOSE, Current + 0); double sar = iSAR(NULL, 0, 0.02, 0.2, Current + 0); double
natsirte
Added topic How can I have the name of the chart in an Alert?
Hello everyone! Just a little question: How can I have the name of the chart in an Alert? Thanks
natsirte
Added topic How to see Moving_average_1mn and Moving_average_5mn in the same chart?
Hi everybody This is my indicator // double moving_average_14 = iMA (NULL, PERIOD_M5, 14, 0, MODE_SMA, PRICE_CLOSE, shift + 0); As you can see his period is 5mn! Now I'd like to put it in a 1mn graph and so I can see my Moving_average_1mn and
natsirte
Added topic problem with [i]
hi in my EA, I try to print my two variables but it's not working: ********************************************************** double m_10 = iMA(NULL, 0, 10, 0, MODE_SMA, PRICE_CLOSE, Current + 0); double m_20 = iMA(NULL, 0, 20, 0, MODE_SMA
natsirte
Added topic how to include a file.txt in an mq4 file ??
Hi everybody I've got a file (var.txt) with some variables //************var.txt*********************// double high_d1 = iHigh (NULL, PERIOD_D1, Current + 0); double low_d1 = iLow(NULL, PERIOD_D1, Current + 0); double highp1_d1 = iHigh(NULL
natsirte
Added topic how to build my own moving average with the average of 4 indicators?
Hi I'd like to know how to build my own moving average with the average of 4 indicators double ma = iMA (NULL, 0, 14, 0, MODE_EMA, PRICE_CLOSE,Current + 0); double ma_m15 = iMA(NULL, PERIOD_M15, 14, 0, MODE_EMA,PRICE_CLOSE, Current + 0); double
natsirte
Added topic Recover a data type from an indicator
Hi Is it possible to recover a data type from an indicator (3 MA Cross w alert) to put it in a EA? This is what I want to do : In the indicator (3 MA Cross w alert) I put a data type : double execute_trade = "ok_buy" or execute_trade =
natsirte
Added topic how to extract character on the right
Hi, I’ve got some variables Int var1= 12.598 Int var2 = 96.325 Int var3=12544.3658882 Int var4=9865.010144 How can I extract the last 2 characters on the right (98 , 25 or 82 etc.. ) With the function « StringSubstr »? Because StringSubstr (var1,0,2)
natsirte
Added topic Is it possible to make working my two EA?
Hi evrerybody Is it possible to make working my two EA? - in the same time - in the same Timeframe (ex : 1 minute) - and with the same Currency Pair (ex :EUR/USD) I've change the MagicNumber (EA_1 = 10 ; EA_2 = 20) but they're working one after
natsirte
Added topic Highest and Lowest since a trade begin
Hi everyboy I want to solve a problem : I try to get the Highest and Lowest since a trade begin : First I do that : double top_High = High[ Highest( NULL, 0, MODE_HIGH, 10, 1 ) ]; double top_Sell = Low [ Lowest ( NULL, 0 ,MODE_LOW , 10, 1 ) ];
natsirte
Added topic How to change color on MACD?
Hello Traders I'd like to change the color of a custom indicator ( MACD) like this : if the current MACD > Previous MACD : the color is green if the current MACD < Previous MACD : the color is red if the current signal > Previous signal
natsirte
Added topic The Future Of Automated Or Robot Forex
The Future Of Automated Or Robot Forex It's likely that in the near future there will be more programmers offering their skills to code MetaTrader and other programmable forex trading robots. And as an alternative, there will be more providers of
12