Thread: 10points 3.mq4
View Single Post
  #911 (permalink)  
Old 12-15-2006, 03:43 AM
forex4syg forex4syg is offline
Member
 
Join Date: Oct 2005
Posts: 84
forex4syg is on a distinguished road
Quote:
Originally Posted by mtaboneweb
Page 89, post 890, Jugulator.zip

I am running all default settings. Don't forget to change precision to 2 if you're going to start at 0.01 and it should be left at 1 if you're going to start at 0.10. Also, I am running an H4 TF but if you wanted to run another TF then you will need to change the following code appropriately.

UpTrendVal = iCustom(Symbol(), PERIOD_H4, "Turbo_JVEL",7,-100,0,0);
DnTrendVal = iCustom(Symbol(), PERIOD_H4, "Turbo_JVEL",7,-100,1,0);

I did not have good results with H1 TF so I think for now I am going to stick with H4. It seems to provide more of a stable direction. I would still like to look at other indicators since on my results there was one point when it had to go to 7 orders to achieve profit.
There seems a bug in Jugulator for calculation of ActualOrders.
In my test, only one position opened for GBPJPYm at some point. It was closed because of ConfirmedOrders=1 and ActualOrders=2.

Not sure where this problem comes. In the code, ActualOrders seems will always increase by 1 when an order is sent. If the SendOrder fails (due to various reason), ActualOrders would still increase 1. Perhaps, it is better to check the error from SendOrder. If no error, then ActualOrders increase by 1.

Thanks!
Reply With Quote