Questions from Beginners MQL5 MT5 MetaTrader 5 - page 529

 

Forum on trading, automated trading systems and testing trading strategies

FAQ on Signals service

vodoleyvl, 2016.03.02 21:33

Thanks, I've set it up using the link, hopefully I'll get email notifications now. But the question remains: why can't I see the login page? Mb, the forum doesn't like my browser? (I've been using Firefox for years, IE is hard to see). Could you send me the link to the page I'm looking for? It should have an Exit button (login is automatic).

 

vodoleyvl, 2016.03.02 21:33

Thank you, I've set up the link and hopefully I'll get email notifications. But the question remains: why don't I see my login page? Mb, forum doesn't like my browser? (I've been using Firefox for years, IE is hard to see). Could you send me the link to the page I'm looking for? It should have an Exit button (login is automatic).

Hover your mouse over your avatar and a drop-down menu will appear:

Output

 
Sergey Gritsay:

I'm not sure what you want, more details please

There is a RISK parameter or property in the indicator (I don't know how to call it properly). By default RISR = 3. If you put an allowance RISK = 1 then there are more signals, but the quality of signals is reduced. If you put RISK = 5 or more then there are less signals, but they are more accurate. So, in my Expert Advisors RISK = 3 and it is impossible to change its value. I want to change it in the same way as it changes in the indicator. I mean to enter the RISK indicator property, in the Expert Advisor settings menu. I apologize for my unclear "language".
 
demonoid123000:
The indicator has a parameter or property (I don't know how to call it correctly) RISK. By default RISR = 3. If you put an allowance RISK = 1-then signals become more, but the quality of signals is reduced. If you put RISK = 5 or more-then the signals are less, but they are more accurate. So, in my Expert Advisors RISK = 3 and it is impossible to change its value. I want to change it in the same way as it changes in the indicator. I mean to enter the RISK indicator property, in the Expert Advisor settings menu. I apologize for my unclear "language".
Files:
 
Hi, can you tell me if you can import your indicator into mt4 on android ?
 
angel341:
Do you know if you can import your indicators into mt4 on android ?

No. Custom indicators, EAs, scripts do not work on mobile versions of the terminal.

Anticipating the question: "Why?

Answer: - The mobile version of the terminal is not intended for using custom indicators, Expert Advisors and scripts.

 
Karputov Vladimir:

No. Custom indicators, EAs, scripts do not work on mobile versions of the terminal.

Anticipating the question: "Why?

Answer: - Mobile version of the terminal is not designed to work with custom indicators, Expert Advisors and scripts.

sps! is the mobile platform wind 10 the same thing?
 
angel341:
oops! is the wind 10 mobile platform the same thing?
Custom indicators, EAs, scripts only work in Windows desktop terminals. If you need to work with a full-fledged terminal mobile, a tablet with a full-fledged Wibdows operating system (not RT) is an option.
 
Sergey Gritsay:
Thank you so much!!! It's just the way I wanted it)
 

Please help! (MQL4)

I need to get the opening time of the Day on M15 chart taking into account each bar - for the indicator.

I decided to calculate in seconds, taking into account the current bar (0), but I must be mistaken.

D_Shift=(Open_time-pos*15*60-(Open_time-Open_timeTF))/1440*60;

   int pos;
   if(nBars==0) pos=Bars-ExtCountedBars-1;
   while(pos>=0)
     {
         datetime  Open_timeTF=iTime(_Symbol,iDeltaTF_Open,0);
         datetime  Open_time=iTime(_Symbol,0,0);

         int D_Shift=(Open_time-pos*15*60-(Open_time-Open_timeTF))/1440*60;
         Print ("D_Shift=",D_Shift);
         datetime  start_time=iTime(_Symbol,iDeltaTF_Open,D_Shift);      
    pos--;
     } 
Reason: