I am getting backtest error: "You have not named you fib object 'Fibo' on the latest update of the bot.
I was able to backtest on the version prior to the latest one.
I was able to backtest on the version prior to the latest one.
Time dependent auto fib? 1 reply
Auto fib bar count 0 replies
My Daily Fib Trading Journal 2 replies
Daily hi/low fib trading 35 replies
Steve Trading Journal 3 replies
DislikedI am getting backtest error: "You have not named you fib object 'Fibo' on the latest update of the bot.
I was able to backtest on the version prior to the latest one.Ignored
DislikedHey Steve
I wrote a Java simulator for the QG strategy back in 2006. It wasn't profitable. Perhaps you will be able to go further than I did.... I can honestly say that my faith in Fibs was shattered after I saw the evidence.
Anyhow, no trips to negative town. I was just passing on my observation.
TDIgnored
DislikedOne thing I do on the Russell and ES futures is, I use the smaller timeframe fibs and larger time frame fibs to add a discretionary position as they will typically match on a pivot.
For instance I will mark on my smaller timeframe chart the larger timeframe 50% 61% 76% Fib area's. Then, I will then wait for the smaller timeframe fib to 'match' the larger timeframe.
Typically, a 76 on the smaller timeframe will be the 38 or 50 on the larger etc.. So, I doubt you could program this in or make any sense of it mechanically, but that seems to work...Ignored
DislikedHey Steve
I wrote a Java simulator for the QG strategy back in 2006. It wasn't profitable. Perhaps you will be able to go further than I did.... I can honestly say that my faith in Fibs was shattered after I saw the evidence.
Anyhow, no trips to negative town. I was just passing on my observation.
TDIgnored
double take = NormalizeDouble(FibHigh_prev+(FibLow-FibLow_prev),Digits);
take = NormalizeDouble(FibLow_prev-(FibHigh_prev-FibHigh),Digits);
DislikedI have been doing some screen time in strategy tester (GBP/USD 5m) and found that we miss out on some pips just after the first initial trade. On a lot of occasions it will reach the first fib expansion level (fib expansion tool) from the previous wave and then retrace and hit stop.
If we split the trades up and take profit on say 75% of the trade at the first fib expansion and then leave the rest to hit the normal stops we should get better results. Hopefully the following picture will help explain:
Attachment
I have already tried...Ignored
DislikedI am getting backtest error: "You have not named you fib object 'Fibo' on the latest update of the bot.
I was able to backtest on the version prior to the latest one.Ignored
if (!ObjectGet("Fibo", OBJPROP_PRICE1)) if (!ObjectGet("Fibo", OBJPROP_PRICE1) && !IsTesting()) DislikedI got this error also. To fix change
toInserted Codeif (!ObjectGet("Fibo", OBJPROP_PRICE1))
Inserted Codeif (!ObjectGet("Fibo", OBJPROP_PRICE1) && !IsTesting())Ignored
DislikedThe QG exit strategy initially sounded great, but some have observed that trades often retrace becoming small losers before a trade can move far enough to be a winner and close by a reversal. This could be a function of the minimum wave size being too small to allow room for a trade to develop before a reversal close, particularly if the market is tending more to range than to trend.Ignored
DislikedI am as sure as I can be that a 40(0) pips swing is insufficient to keep us out of bad trades these days.
On my live account this week, I am doubling this. I managed to just about break even last week, thanks to a Friday trade that was a lot of pips in my favour when I closed it to make sure it would not get hit by the gap come market opening.
My instinct tells me that we need a decent swing before we can trade it these days. Frankly, I am not sure 80 is enough either; we shall see.
Ignored
DislikedFor XXXJPY pairs then you should be looking at around 100(0) pips swing before a nice retrace comes into play.
As a general rule if a pairs daily range has been broken either up or down then its a good indication that a retrace is likely.
Scoobs.Ignored
DislikedCheers Scoobs. The UseDynamicSwingCalculation thingy allied with the MinimumFibSize should take care of this. So, when trading the xxxjpy pairs people should set:
- UseDynamicSwingCalculation to true to take care of >100 swings.
- MinimumFibSize= 100(0) to ensure the fibs are drawn over the latest 100+ swing.
Ignored
DislikedSteve,
You could automate it based on the pair the EA is attached to:
MinimumFibSize=ATR(NULL,PERIOD_D1,14,0)*Point;
or something like that.
Scoobs.Ignored
DislikedThanks scoobs. It is already automated like this, but people have to set their minimum accepetable fib size in case Atr returns too small a figure.
Ignored
Cheers Scoobs