NavigationUser loginWho's new
Who's onlineThere are currently 1 user and 34 guests online.
Online users:
|
Greetings, looking for some codeHello, I am looking for code that will let this script put on a trade; my understanding is that I need to account I am a learning coder, and any help is greatly appreciated, also thank you Coders Guru for this website which will help me learn to code. Best regards Dale. The Idea of the script is to use high [1] - low [1] to calculate lots, the account percentage risk is fixed at 1/4 percent. //+------------------------------------------------------------------+ //+------------------------------------------------------------------+ double PercentToRisk =.25; //Risk is set a 1/4 percent double StopLoss = ( (High[1]+(5*Point)) - (Low[1]-(3*Point) ) ) / Point; //Devide by 100 here for mini MessageBox("Lots=" + (Lots)); while(true) |