Indicator for Metastock : Required

gkpc

Well-Known Member
#1
Friends, I need some formula for an indicator which can plot the previous days HIGH and LOW in the Current Intraday Chart.....
Thanks...
 

gkpc

Well-Known Member
#2
Friends, I need some formula for an indicator which can plot the previous days HIGH and LOW in the Current Intraday Chart.....
Thanks...
I had been drawing Lines at previous days levels but at times old lines remain and due to error creates confusion and problem.
Please give something that is just copy paste in Metastock 8.0
 

rkkarnani

Well-Known Member
#3
I had been drawing Lines at previous days levels but at times old lines remain and due to error creates confusion and problem.
Please give something that is just copy paste in Metastock 8.0
Seems you have started enjoying the charts..... Good to see your enthu... keep it up!!!
Whom did you back in yesterdays game, KKR or RR tell honestly...you are a person migrated to Rajasthan from Kolkata hence this query.... :D
I think your Previous days levels indiactor should not be difficult who understand the subject ( You n me are both copy pasters). All the best in your quest....Check your PM have sent a message.
Regards.
 
#4
Hi GKPC, Sorry yesterday I might have misguided you, should not have interrupted your trades... however the breakout never came. I'll very soon post the Metastock Indicator required by you!!!! Its very simple, just dont have time to do it write now!!!!
cyasoon!!!
"Its very simple" - I do not think so.....
 

gkpc

Well-Known Member
#5
GKPC, check your PM.. have sent you the code!!!!
Enjoy!!!

IndiaTrader Sir, what makes you think its difficult!!! I am an NOT an expert in MS but this wud be a simple thing.

Request GKPC to post his comment after he copy pastes the Indicator in his Metastock.

GKPC, do confirm whether its working. I found that you had mentioned this request at a few other threads too, but no senior had come forward to help you..... I dont know why, but may be becoz ur requiremnt isnt that important and rather un essential and trivial. Thats the reason I did not post it here but sent you by PM!!!!

As u urself said that straight lines can be drawn first thing in the morning at previous days level. Ofcourse its simpler if an Indicator is created......
Hello, thanks for the PM, will need the help of my friend here to copy paste... he is busy now so will post my comments as soon as i check the same in Metastock.
Thanks a lot friend.
Regards
-Gautam
 

gkpc

Well-Known Member
#6
Hi,

i think instead of thinking of adding more indicators what an investor needs is simple and the best set of indicators which work in all the market conditions. log on to www.precisiontechnicals.com for more help. i have gained a lot from it.
Thanks, but your repeated posts about this particualr site may be termed as " promotion " so better be careful.
I'll surely check it out. Is it easy for a non technical person too !!!!???
-Gautam
 

rohangawale

Well-Known Member
#7
Hi Any Body Can Tell Me How To Write A Query In Metastock For "nr4 & Nr7" Stock. I Dont Know So If Anyone Can Help Me
 

rkkarnani

Well-Known Member
#8
Hi Any Body Can Tell Me How To Write A Query In Metastock For "nr4 & Nr7" Stock. I Dont Know So If Anyone Can Help Me
NR4: Copy paste in relevent col.

Coloumn A:

Std(Log(C/Ref(C,-1)),5)/Std(Log(C/Ref(C,-1)),99)

Col.B:

HIGH-LOW<Ref(LLV(H-L,3),-1)

Column C
HIGH<(Ref(HIGH,-1)AND LOW>Ref(LOW,-1))
Column D
HIGH
Column E
LOW

Filter
colA<.5 AND (colB= 1 OR colC= 1)
 
D

darsh_goswami

Guest
#9
Friends, I need some formula for an indicator which can plot the previous days HIGH and LOW in the Current Intraday Chart.....
Thanks...
Dear Guatam ,..

Not sure wether u got the code or not or its working with u or not...

Here we Go ... the code to plot Previous day's High , Low and Close on todays intraday chart ,.. Thanx to jose silva for coding.

Code ===== simply copy n paste in ur indicator =========

=================================================

pds:=1;

{ Day's start }
dStart:=DayOfMonth()<>Ref(DayOfMonth(),-1) OR Cum(1)=2;

{ Previous x Days' High }
Hd:=HighestSince(pds,dStart,H);
Hd:=ValueWhen(1,dStart,ValueWhen(2,1,Hd));
Hd:=ValueWhen(1,Hd<>0,Hd);

{ Previous x Days' Low }
Ld:=LowestSince(pds,dStart,L);
Ld:=ValueWhen(1,dStart,ValueWhen(2,1,Ld));
Ld:=ValueWhen(1,Ld<>0,Ld);

{ Previous Day's Close }
Cd:=ValueWhen(1,dStart,ValueWhen(2,1,C));
Cd:=ValueWhen(1,Cd<>0,Cd);

{ Plotting them on charts ,... }
Hd;Ld;Cd;

========================================================
========================================================

Regards,..
Darsh
 

rkkarnani

Well-Known Member
#10
Dear Guatam ,..

Not sure wether u got the code or not or its working with u or not...

Here we Go ... the code to plot Previous day's High , Low and Close on todays intraday chart ,.. Thanx to jose silva for coding.

Code ===== simply copy n paste in ur indicator =========

=================================================

pds:=1;

{ Day's start }
dStart:=DayOfMonth()<>Ref(DayOfMonth(),-1) OR Cum(1)=2;

{ Previous x Days' High }
Hd:=HighestSince(pds,dStart,H);
Hd:=ValueWhen(1,dStart,ValueWhen(2,1,Hd));
Hd:=ValueWhen(1,Hd<>0,Hd);

{ Previous x Days' Low }
Ld:=LowestSince(pds,dStart,L);
Ld:=ValueWhen(1,dStart,ValueWhen(2,1,Ld));
Ld:=ValueWhen(1,Ld<>0,Ld);

{ Previous Day's Close }
Cd:=ValueWhen(1,dStart,ValueWhen(2,1,C));
Cd:=ValueWhen(1,Cd<>0,Cd);

{ Plotting them on charts ,... }
Hd;Ld;Cd;

========================================================
========================================================

Regards,..
Darsh
Thanks a lot sir. CCMB had also sent to him by PM.... Good you have posted here, may be use to others too...
Thanks again!!! (Now happy Gautam that people here are really really helpful.....)
GKPC had PM me that no one is responding to his simple request. As ususal a senior responds!!! The uniqueness of this forum.
Regards
R K Karnani
 

Similar threads