Kleinerbroker Posted October 3, 2011 Report Share Posted October 3, 2011 Ich versuche Formate zu wahren => //+-----------------------------------------------------------------------------------------------+ //| Ernten_Goodtime.mqh | //| The code should be used for Ernten only | //+-----------------------------------------------------------------------------------------------+ //+-----------------------------------------------------------------------------------------------+ //| function : checks if EA is allowed to trade or off-time | //+-----------------------------------------------------------------------------------------------+ // | int GoodTime() // | { // | if((Tradinghour1 <= Hour()) && (Tradinghour2 > Hour()) || // | (Tradinghour3 <= Hour()) && (Tradinghour4 > Hour()) || // | (Tradinghour5 <= Hour()) && (Tradinghour6 > Hour())) // | // | return(1); // | else // | return(0); // | } // | //------------------------------------------------------------------------------------------------+ Das ist ohne RTE KB Quote Link to comment Share on other sites More sharing options...
Kleinerbroker Posted October 3, 2011 Author Report Share Posted October 3, 2011 und nun mit dem RTE : //+-----------------------------------------------------------------------------------------------+ //| Ernten_Goodtime.mqh | //| The code should be used for Ernten only | //+-----------------------------------------------------------------------------------------------+ //+-----------------------------------------------------------------------------------------------+ //| function : checks if EA is allowed to trade or off-time | //+-----------------------------------------------------------------------------------------------+ // | int GoodTime() // | { // | if((Tradinghour1 <= Hour()) && (Tradinghour2 > Hour()) || // | (Tradinghour3 <= Hour()) && (Tradinghour4 > Hour()) || // | (Tradinghour5 <= Hour()) && (Tradinghour6 > Hour())) // | // | return(1); // | else // | return(0); // | } // | //------------------------------------------------------------------------------------------------+ Und was lernt der KB ? Ohne RTE ist besser als mit RTE . KB Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.