PureBytes Links
Trading Reference Links
|
http://www.tedtick.com/downloads/steid.pdf
--- In amibroker@xxxxxxxxxxxxxxx, "rhoemke" <robert@xxx> wrote:
>
> Market Profile is totally different from VAP.
> See here:
> http://www.cbot.com/cbot/pub/page/0,3181,1168,00.html
>
> Regards
> Robert
>
> --- In amibroker@xxxxxxxxxxxxxxx, "Tomasz Janeczko" <groups@> wrote:
> >
> > It is included under "Charts" / "Basic Charts":
> > "Volume At Price Multi"
> >
> >
> > Formula:
> >
> > _SECTION_BEGIN("Price");
> > SetChartOptions(0,chartShowArrows|chartShowDates);
> > _N(Title = StrFormat("{{NAME}} - {{INTERVAL}} {{DATE}} Open %g, Hi %g, Lo %g, Close %g (%.1f%%) {{VALUES}}", O, H, L, C,
> > SelectedValue( ROC( C, 1 ) ) ));
> > Plot( C, "Close", ParamColor("Color", colorBlack ), styleNoTitle | ParamStyle("Style") | GetPriceStyle() );
> > _SECTION_END();
> >
> > _SECTION_BEGIN("VAP");
> > segments = IIf( Interval() < inDaily, Day(), Month() );
> > segments = segments != Ref( segments , -1 );
> >
> > PlotVAPOverlayA( segments , Param("Lines", 300, 100, 1000, 1 ), Param("Width", 80, 1, 100, 1 ), ParamColor("Color", colorGold ),
> > ParamToggle("Side", "Left|Right" ) | 2 * ParamToggle("Style", "Fill|Lines", 0) | 4*ParamToggle("Z-order", "On top|Behind", 1 ) );
> > Plot(segments, "", colorLightGrey, styleHistogram | styleOwnScale );
> > _SECTION_END();
> >
> > Best regards,
> > Tomasz Janeczko
> > amibroker.com
> > ----- Original Message -----
> > From: "reinsley" <reinsley@>
> > To: "AB User's list" <amibroker@xxxxxxxxxxxxxxx>
> > Sent: Saturday, January 03, 2009 6:14 PM
> > Subject: [amibroker] Market Profile old charting feature
> >
> >
> > > Hi,
> > >
> > > I found an ad for Amibroker 4.8 Standard.
> > >
> > > http://technical.traders.com/Products/display.asp?prodid=620&dbname=software\software&tablename=soft_quest
> > >
> > >
> > > It is said that a Market Profile existed among charting features.
> > >
> > > In v:5.17 I did not find such a feature.
> > >
> > >
> > > Am I missing something ?
> > >
> > > It was removed, I presume ?
> > >
> > > Was this feature better than the Market Profile actual Formula into the
> > > AB Library ?
> > > ( this version as small bugs and some features are missing).
> > >
> > >
> > >
> > > I am on the verge to add the POC value and the Y axis in the MP formula
> > > ( if I can ) but maybe a more advanced formula still exist ? It could be
> > > a good start to adapt the existing formula.
> > >
> > > Is it possible to retrieve the old formula ? It would be a nugget to add
> > > in present version, if possible.
> > >
> > > If no, I must start to work on the existing formula...
> > >
> > > Thank you for the help.
> > >
> > > Best regards
> > >
> > >
> > > ------------------------------------
> > >
> > > **** IMPORTANT ****
> > > This group is for the discussion between users only.
> > > This is *NOT* technical support channel.
> > >
> > > *********************
> > > TO GET TECHNICAL SUPPORT from AmiBroker please send an e-mail directly to
> > > SUPPORT {at} amibroker.com
> > > *********************
> > >
> > > For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
> > > http://www.amibroker.com/devlog/
> > >
> > > For other support material please check also:
> > > http://www.amibroker.com/support.html
> > >
> > > *********************************
> > > Yahoo! Groups Links
> > >
> > >
> > >
> >
>
------------------------------------
**** IMPORTANT PLEASE READ ****
This group is for the discussion between users only.
This is *NOT* technical support channel.
TO GET TECHNICAL SUPPORT send an e-mail directly to
SUPPORT {at} amibroker.com
TO SUBMIT SUGGESTIONS please use FEEDBACK CENTER at
http://www.amibroker.com/feedback/
(submissions sent via other channels won't be considered)
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/amibroker/join
(Yahoo! ID required)
<*> To change settings via email:
mailto:amibroker-digest@xxxxxxxxxxxxxxx
mailto:amibroker-fullfeatured@xxxxxxxxxxxxxxx
<*> To unsubscribe from this group, send an email to:
amibroker-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|