I found a Stockfinder screen shot and also saw the Add Rule icon, so that's probably it. But I haven't found a free trial, when I tried to sign up there was money involved even though I'm a longtime Telechart subscriber. I can't try Freestockcharts because it requires a Silverlight upgrade that won't work with my Windows XP. I also have found a VWMACD histogram indicator on NinjaTrader, don't know if I can make it a non-histogram indicator. And NinjaTrader has no way to quickly change the number of days on the chart, so that makes it very clunky and annoying to use.
Amibroker formula SECTION_BEGIN("Volume weighted moving average"); P = ParamField("Price field",-1); Periods = Param("Periods", 15, 2, 1000, 1, 10 ); Vwma = Sum((Volume*P),periods)/Sum (Volume,periods); Plot(Vwma,_DEFAULT_NAME(), ParamColor( "Color", colorCycle ), ParamStyle("Style") ); _SECTION_END();
Indicator looks good with a fairly nice, clean up and downtrend - which obviously ain't always present.
I've tried this formula in Amibroker v5.6 but it keeps giving me an error: Ln: 1 Col: 14 : Error 32. Syntax error, unexpected '('. Is there semicolon missing at the end of the previous line? Did you get anything like this in your Amibroker version? I copied and pasted it in so it's exactly the same as I see here.
I had copied from internet (I don't use indicators), but the issue is an underscore missing prior to the word SECTION_BEGIN Therefore use this: _SECTION_BEGIN("Volume weighted moving average");
Oops, it turns out this formula is for a Volume Weighted Moving Average. I looked around and here's a page with the VWMACD for Amibroker if anyone's interested. http://www.wisestocktrader.com/indicators/2909-volume-weighted-macd