Metastock Formula

D

darsh_goswami

Guest
#51
Hi Traderji,

Request you to post the formula for below mentioned req for Explorer.

1. Stochastics- %K line rising above %D line below the lower band (below20) and %K line falling below %D line on the upper band(above80)
here u go ...

cross(stoch(%K,%D),20) & cross(80,stoch(%K,%D)
U need to create two different explorer ,.. or just bear with 1 n 0.
2. Stocks trading near to its key sup/res areas.
3. Stocks giving a breakout or breakdown from key sup/res levels.
Need to be more precise about support n resistance. So plz post ur requirements.

4. A stock which has retraced (fallen/risen) 38%, 50%, 61% from its peak/bottom.
simple way is use fibonacci tool. Though its quite possible to code it.

PCT:=Input("SWING REVERSAL %",0,100,5);
TOP:=Peak(1,HIGH,PCT);
BOTTOM:= Trough(1 ,LOW ,PCT );
DZ1:=TOP-((TOP-BOTTOM)*0.38);
DZ2:=BOTTOM+((TOP-BOTTOM)*0.38);

And so on for other ratios.
5.Doji formation near key support/res areas.
Not so good with Candlesticks. sorry for that.



Regards,..
Darsh
 
#52
Thanks for the info Darsh.

Support & resistance :
Atleast 4points from where the stock has retraced/bounced and on breakout/breakdown of that point, stock has made 15-20% up/down move

Thanks again.
Vishal
 

AW10

Well-Known Member
#54
Here you go...

High/Low/Close are the three values from yesterdays price.
Use calculation below to find Pivot point first.

Pivot Point = ( High + Close + Low )/3

And then use various values to get various Resistence and supports levels.

R3 = High + 2*(Pivot - Low)
R2 = Pivot + (R1 - S1)
R1 = 2 * Pivot - Low
S1 = 2 * Pivot - High
S2 = Pivot - (R1 - S1)
S3 = Low - 2*(High - Pivot)

This works pretty well in liquid markets (also used by floor traders in US markets)

Happy Trading.
 

Prabhjeet

Well-Known Member
#57
Hello everyone, I want to use the formula based on Saint's pivot methods.

The indicator should notify the pivot which has atleast 10% retacement and the pivot low should be noted when price goes above the point from where 10% or more correction has taken place.

For e.g. Show Pivt hiigh arrow only once the price of say SCRIP A corrects from 100 to 90, now suppose price corrects till 80 and then moves 10% above pivot high 100 i.e 110 we get the pivot low arrow at 80, can anyone help me with this formula
 
D

darsh_goswami

Guest
#59
Venkatan ,..
Simply go to www.equis.com

Prabhjeet ,.. sorry i can not help u much as i could not understand what u wanna know.

Vishal,.. May be my mind is out of order as i could not understand ur logic also.

Regards,..
DArsh
 

Similar threads