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

Volume-weighted Moving Average in SC4



PureBytes Links

Trading Reference Links

Thanks to Neville, Monte, Dennis, Paul and others for helping me with
this problem.

Don't have a new price and volume indicator, but I do have two new lines
on my charts. I am running the following formula in the subgraph with
the volume bars and OBV. This puts the close and volume bars on the same
area of the screen. Very simple. Easier to read the price and volume as
one force, which I use in selecting my work list stocks.

Plot1: IFF (V>0, (C * V) / V,Close)
Plot2: Average (Plot1,50)

Notes: On weekly chart, in Plot2 change 50 to 10.
           Neville suggested solving the divide by zero with the "V>0,"
at the first of Plot1 and "Close" in place of "1" at the end of Plot1.

So, no formula for the computer to run to scan for the next great stock,
but this helps me understand the volume/price forces a little better.

Thanks to all, Ben