|
Displaying the Price of a
Security in 32nds and 64ths
MetaStock Indicator
All versions of MetaStock prior to our Windows software would
need this formula.
You can display your security's prices in 32nds and 64ths, by using
the following custom formulas. Once plotted these values will be
displayed in the indicator window.
| For 32nds |
|
| INT( C ) + ( ( FRAC( C ) /
.03125 ) / 100 ) |
|
| For 64ths |
|
| INT( C ) + ( ( FRAC( C ) /
.015625 ) / 100 ) |
|
**Where C is for the security's closing price and can be
replaced with O, H, or L for the open, high, or low price instead.
|