PureBytes Links
Trading Reference Links
|
Fulvio,
Try this:
tick:= If(CLOSE<0.3,0.0005,
If(CLOSE>=0.3 and <=1,499,0.001,
If(CLOSE>=1.5 and <=2,995,0.005,
If(CLOSE>=3,0.001,0))));
tick
Preston
--- In equismetastock@xxxxxxxxxxxxxxx, "Fulvio" <fulami@xxxx> wrote:
> You are my only resource to learn metastock, please help me to
correct my
> simple formula for the explorer.
>
> Tick is the name of Column B, I want that column B have this value
(0.0005
> or 0.001 or 0.005 or 0.001):
>
> If(CLOSE<0.3,Then Tick=0.0005)
> If(CLOSE>=0.3 and <=1,499,Then Tick=0.001)
> If(CLOSE>=1.5 and <=2,995,Then Tick=0.005)
> If(CLOSE>=3,Then Tick=0.001)
>
> Thanks,
> Fulvio
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/equismetastock/
<*> To unsubscribe from this group, send an email to:
equismetastock-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|