natsirte / Profile
natsirte
Left feedback to developer for job Stochastic Oscillator indicator with the timeframe 15 minutes
Great great job!!
It's done after less than 2 hours!!
Thank you
natsirte
Left feedback to developer for job EA do not open independently
Very good job. Done very quickly . Thank you!!
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)
: