supply demand formula from NINJACATOR

#71
hi
you can try video watching.
hints
price-revisit-fresh levels of sd
Order flow is high at strong s or d areas. supply-demand zones are high orderflow areas.

whenever price leaves a zone abruptly-very fast , that zone acts a magnet for price & it tries pulling price to it.

http://www.youtube.com/watch?v=6zWoQtaVvMQ&list=UU8sV-ldP884qxJT5GEJ2ajw#t=24
HTML:
YOUR QUESTIONS ARE GREAT.
HAVE YOU MADE ANY OBSERVATIONS SO FAR? What is the result?

My questions are
1)How to take a trade using this AFL?
A)Buy after a demand zone is confirmed. use a tight stoploss. 
b)sell at a supply zone.
be ready to jump off the train if 
demand zone disappears and supply zone appears.

2) After how many bars does the demand/supply zone appears ?
A)As demand or supply happens,the zones appear.
Only GOD ALMIGHTY KNOWS  as he manipulates markets.
3)After how many bars does the demand/supply zone zone change colour from red to blue or vice-versa ?
A)Are you chooser of easiest option though its bad for you?

 option 1)ask the owner of the code or 
option2)test 100 times find out answer by yourself if you can use bar reply tool. option3) wait as long as somebody on forum answers you with patience.

please read supply demand zone basics and odds enhancers (available on this forum)before you ask next question.
 
Last edited:
#73
I am saifyarsiwala. I really appreciate the amount of efforts put by trash, ford, mastermind and of course casoni, for this demand supply AFL. As a newbie to the market I am able to understand this much better then indicator based systems.
Thanks to all.
 

casoni

Well-Known Member
#76
Hello,

add below code for buy-sell-short-cover.
this are basic
//--------- BUY - SELL... CODE --------------
BuySetupValue = ValueWhen(Buy_valid,H,1);
SellsetupValue= ValueWhen(Sell_valid,L,1);
Buysetup = Buy_valid;
Sellsetup = Sell_valid;
Lg = Flip(Buysetup,Sellsetup);
st = Flip(Sellsetup,Buysetup);
Buy = (Lg AND Cross(C,BuySetupValue)) ; Cover= Buysetup;
Short= ( st AND Cross(SellsetupValue,C)) ;Sell=sellsetup;
Buy= ExRem(Buy,Sell);
Sell= ExRem(Sell,Buy);
Short=ExRem(Short,Cover);
Cover=ExRem(Cover,Short);
PlotShapes(IIf(Buy,shapeUpTriangle,shapeNone),7,0,L,-15);
PlotShapes(IIf(Short,shapeDownTriangle,shapeNone),7,0,H,-15);
PlotShapes(IIf(Cover,shapeSmallUpTriangle,shapeNone),9,0,L,-15);
PlotShapes(IIf(Sell,shapeSmallDownTriangle,shapeNone),9,0,H,-15);

//---------------------------------------------------
you can add position when price is above last resistance or support
i.e more buy when price has crossed resistance
short more when price crosses support .
ps- above condition had not been added to buy-sell .... code

Thank you
 
#77
Hi Trash,
Thanks for the AFL. I have been trying to add one more validation to check if there is any candle going forward which comes into the zone thus invalidating the zone. So only those zones should be valid which do not have any candle in front of them.
Is it possible to apply this logic . I tried but could not. A little help is highly appreciated.
 

Similar threads