Scripts: Long position

 

Long position:

A simple script that allows you to open a long position using the current price location with a specified Risk Percentage and Reward Ratio.

Author: Marcus Wyatt

 
   double percentage   = RiskPercentage / 100;
   
   if(percentage > MAX_PERCENT) percentage = MAX_PERCENT;
   

   
   lots = (final_account_balance*(RiskPercentage/100.0))/(lots_size/leverage);
   //----
   return( lots );

In these lines of code you calculate the percentage and limit this but later in the calculation of lots_size you don't use the limited "percentage" value.

I don't think that this would be correct cause "percentage" is not used in the codesnippet anymore, pls check this. 

 
this good option
Reason: