View Single Post
  #507 (permalink)  
Old 04-27-2007, 02:42 PM
cucurucu's Avatar
cucurucu cucurucu is offline
Senior Member
 
Join Date: Jan 2006
Posts: 314
cucurucu is on a distinguished road
Quote:
Originally Posted by gbolla
There is another difference about Maxlot:

On V1:
if (AccountBalance()>6000) MaxLot=MathFloor(AccountBalance()/40)/100;

On V1mini:
if (AccountBalance()>6000) MaxLot=MathFloor(AccountBalance()/4)/100;

...there is an error here ^ .(I suppose). The correct is 600 and not 6000!
Bolla
There is no error. For a 6001$ mini account, maxlot will be 15. This means 1500$ and it's 25% of the account balance. It is ok.

For a 6001$ standard account, maxlot will be 1.5. This also means 1500$ (25% of 6000$).


The margin used for 0.01 is not the same. In mini accounts 1 lot=100$, in standard accounts 1lot=1000$.

Last edited by cucurucu; 04-27-2007 at 02:48 PM.
Reply With Quote