[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Intraday ATR function



PureBytes Links

Trading Reference Links

Neo,

I have not yet used ATR yet.  But I trade intraday.  How do you use 
ATR?  Do you name the first formula TRID and the second ATRID?  Then you 
are using ATRID which is ATR Intra Day?

Thanks for your time.
Murat

At 06:43 PM 4/17/01 -0400, you wrote:
>I have thought about the problem. It appears we need two new functions. The
>functions are:
>
>1) True Range (TR): as usually defined
>
>2) True Range Intraday (TRID):
>
>     If( DayOfMonth() = Ref(DayOfMonth(),-1),
>  Fml("TR"),
>  H-L)
>
>3) ATG Intraday (ATRID):
>
>Mov( Fml("*ATR TRID") , 20 ,S)   [the # of bars can be changed as desired]
>
>
>Does this make sense? Any suggestions?
>
>neo