- Katılım
- 23 Eki 2020
- Mesajlar
- 1,828
Float Analysis To: <metastock@xxxxxxxxxxxxx> Subject: Float Analysis From: "Rick Lampkin" <rlam3491@xxxxxxxxxxxxxxx> Date: Sat, 20 Jan 2001 13:30:46 -0800 Reply-To: metastock@xxxxxxxxxxxxx Sender: owner-metastock@xxxxxxxxxxxxx Is there anyone on the List that uses or knows how to use Float Analysis with Metastock? If you have a formula that will give a simple cumulative total of shares traded within certain time boundaries, from a given date either forward or backward, I would appreciate your sharing it with me. I have a formula called "Cumulative Flosting Volume" but it just gives me a straight line across the highest high on the chart and another at the bottom across the lowest low on he chart and this line never changes regardless of the float input you enter. The formula is as follows: |
|
Cumulative Flosting Volume BackVolume:=LastValue(Cum(V))-Cum(V)+V; float:=Input("# Shares (millions) ",1,100,1); float=float*1000000; If(BackVolume>=float,+1,-1); |
|