Can you identify this charting software ?

Discussion in 'Trading Software' started by barata, Oct 15, 2017.

  1. barata

    barata

    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.
     
    #11     Oct 17, 2017
  2. themickey

    themickey

    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();
     
    #12     Oct 17, 2017
  3. SunTrader

    SunTrader

    Indicator looks good with a fairly nice, clean up and downtrend - which obviously ain't always present.
     
    #13     Oct 21, 2017
  4. barata

    barata

    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.
     
    #14     Oct 22, 2017
  5. themickey

    themickey

    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");
     
    #15     Oct 22, 2017
  6. barata

    barata

    Thanks for pointing that out, that's all it was...
     
    #16     Oct 22, 2017
  7. barata

    barata

    #17     Oct 22, 2017