Experts: Very Blonde System

 

Very Blonde System:

The Expert Advisor opens a reverse position, additionally placing a grid of orders for reinforcement.

Very Blonde System tester

Author: Vladimir Karputov

 
Tell me how to reduce the lot
 
SCALPOSNIMATEL:
Can you tell me how to reduce the lot?

The lot is calculated here:

void CheckForOpen()
  {
   double L = iLowest(Symbol(),Period(),MODE_LOW,CountBars,0);
   double H = iHighest(Symbol(),Period(),MODE_HIGH,CountBars,0);
   double Lots=MathRound(m_account.Balance()/100)/1000;

Play around with the "1000" factor.

 
Vladimir Karputov:

The lot is calculated here:

void CheckForOpen()
  {
   double L = iLowest(Symbol(),Period(),MODE_LOW,CountBars,0);
   double H = iHighest(Symbol(),Period(),MODE_HIGH,CountBars,0);
   double Lots=MathRound(m_account.Balance()/100)/1000;

Play around with the "1000" factor.

Thank you very much
 

Testing ...



 
Hi, I was looking at the System and I was curious to know why there's always a fail of trades at the end, I also tested the EA and after making some good profit, it fails. 
 
ghyamer:
Hi, I was looking at the System and I was curious to know why there's always a fail of trades at the end, I also tested the EA and after making some good profit, it fails. 
В конце тестирования образовалась огромная просадка по средствам. Когда тестирование остановлено, то баланс == средствам - поэтому Мы видим провал.
 

slowly but surely (by default settings) - 

Very Blonde System