Folks,
While reading one of the magazine I found below mentioned stuff from TD.
Buy Precondition:
1. Previous days close < Close day before it's four trading ago i.e. less than close 5 days ago
2. Day before Previous days close < Close day before it's four trading ago i.e. less than close 6 days ago
3. Previous days close < opening of same day
Buy SetUp:
1. C > Previous Close
2. C > Close four trading session ago
3. Today's C > today's O
Sell conditions are reversed.
If I classify this correctly, this is what TD called price flip. Still not sure. I have also prepared small formula for this which is as mentioned below and could found some interesting results (at least for short term trading). Need to do more research.
Give your opinion, please.
Formula:
//**** Setup Buy Signal ****/
Con1 = Ref(C,-1) < Ref(C,-5);
Con2 = Ref (C,-2) < Ref(C,-6);
Con3 = Ref(C,-1) < Ref(O,-1);
Con4 = C > Ref(C,-1);
Con5 = C > Ref(C,-4);
Con6 = C > O;
Buy = Con1 AND Con2 AND Con3 AND Con4 AND Con5 AND Con6;
//**** Setup Sell Signal ****/
Con1 = Ref(C,-1) > Ref(C,-5);
Con2 = Ref (C,-2) > Ref(C,-6);
Con3 = Ref(C,-1) > Ref(O,-1);
Con4 = C < Ref(C,-1);
Con5 = C < Ref(C,-4);
Con6 = C < O;
Sell = Con1 AND Con2 AND Con3 AND Con4 AND Con5 AND Con6;
Impressed with TD's methodologies (off recently),
Apurv
While reading one of the magazine I found below mentioned stuff from TD.
Buy Precondition:
1. Previous days close < Close day before it's four trading ago i.e. less than close 5 days ago
2. Day before Previous days close < Close day before it's four trading ago i.e. less than close 6 days ago
3. Previous days close < opening of same day
Buy SetUp:
1. C > Previous Close
2. C > Close four trading session ago
3. Today's C > today's O
Sell conditions are reversed.
If I classify this correctly, this is what TD called price flip. Still not sure. I have also prepared small formula for this which is as mentioned below and could found some interesting results (at least for short term trading). Need to do more research.
Give your opinion, please.
Formula:
//**** Setup Buy Signal ****/
Con1 = Ref(C,-1) < Ref(C,-5);
Con2 = Ref (C,-2) < Ref(C,-6);
Con3 = Ref(C,-1) < Ref(O,-1);
Con4 = C > Ref(C,-1);
Con5 = C > Ref(C,-4);
Con6 = C > O;
Buy = Con1 AND Con2 AND Con3 AND Con4 AND Con5 AND Con6;
//**** Setup Sell Signal ****/
Con1 = Ref(C,-1) > Ref(C,-5);
Con2 = Ref (C,-2) > Ref(C,-6);
Con3 = Ref(C,-1) > Ref(O,-1);
Con4 = C < Ref(C,-1);
Con5 = C < Ref(C,-4);
Con6 = C < O;
Sell = Con1 AND Con2 AND Con3 AND Con4 AND Con5 AND Con6;
Impressed with TD's methodologies (off recently),
Apurv
Last edited: