Dislikedmy Notes on the CHART i was only looking at the Single CCI with DUAL CCI and the Renko's, No Semaphor or Awesome Oscilator or River, if i would add something it would only be the River and the London HoursIgnored
Box Spreads of Equity Index Options on Futures as a Financing Tool 0 replies
experts advisor file not in experts folder 12 replies
box play 18 replies
Anyone trading "Box Options" with Oanda??? 20 replies
Oanda Order Flow Box 5 replies
Dislikedmy Notes on the CHART i was only looking at the Single CCI with DUAL CCI and the Renko's, No Semaphor or Awesome Oscilator or River, if i would add something it would only be the River and the London HoursIgnored
DislikedR4 = C + RANGE * 1.1/2
R3 = C + RANGE * 1.1/4
R2 = C + RANGE * 1.1/6
R1 = C + RANGE * 1.1/12
PP = (HIGH + LOW + CLOSE) / 3
S1 = C - RANGE * 1.1/12
S2 = C - RANGE * 1.1/6
S3 = C - RANGE * 1.1/4
S4 = C - RANGE * 1.1/2
yes , but hope the formula is the one above in code.
our ma cross gives the direction and we get the correct short or long value from camarilla.Ignored
DislikedI think that might be helpful in the EA with the fast bands that I would like to test.
Thanks seller9Ignored
DislikedI would like to make a recommendation about this EA, but I would value input from Seller9 to see if it's possible to do...
Can we add CCI to this EA to check for ranging, but it needs to be used slightly differently to the River Break EA.
The MA Cross acts as the signal that there is a trade pending, but then we need to wait for CCI to cross + or - 100 before the trade is actually placed.
In most instances of ranging, the CCI never passes 100, and thus the trade would not be placed if we waited for CCI to act as confirmation.
Where a trend...Ignored
DislikedOK
Give this a try. You can use up to 4 closed candles.
NumberCandlesToBeActive = 1 is the normal number like in version 2.
You can use 1,2,3,4.
This should give the CCI plenty of time to catch up.
AttachmentIgnored
DislikedCamarilla is figured a little different.
D3 = 0.2750;
D4 = 0.55;
H5 = (yesterday_high/yesterday_low)*yesterday_close;
H4 = ((yesterday_high - yesterday_low)* D4) + yesterday_close;
H3 = ((yesterday_high - yesterday_low)* D3) + yesterday_close;
L3 = yesterday_close - ((yesterday_high - yesterday_low)(D3));
L4 = yesterday_close - ((yesterday_high - yesterday_low)*(D4));
L5 = yesterday_close - (H5 - yesterday_close);
Check out this site.
http://forex-indicators.net/mt4-indicators/camarilla
Attachment ...Ignored
DislikedStarting some testing on the Cam_Renko_v1 EA and doing some tweaking to the settings. Below is what it looks like so far and one trade it has taken.
This version trades just between the H3 and L3, if all goes well we can add the breakout of the next level as another option.
AttachmentIgnored
DislikedHi guys just to check with you all, is the ETB EA no more update? Or should said final copy?Ignored
Dislikedseller9, please verify manually that the values shown by the EA are as per the formula given . many a times this simple error results in lot of rework. day values should be used for calculating the camarilla values.
Also was thinking of a minor additon to MA Renko version 2 , that is a flexible option to fire the trade , we can use the present ema cross or the Doublewoody cci cross as suggested by max
we put say 23 on trend and entry and on top of this we put a 12 sma , when there is a cross we fire the trade . I find cci gives early entries...Ignored
Disliked@seller9 may be we need to correct this values
D3=0.2750;
D4=0.55;
instead we put the correct figure as per the formula that will solve the problemsIgnored