[amibroker] Re: Identifying Pnf Patterns

2008-06-07 Thread justinwonono
This may have already been asked but is there a "log" formula to use as a scale option, eg. 1% log scale of close (or high-low ), as used in BEBroker? I don't think it is as simple as using the "semi-log" option chart param...or is it? Is it possible? Regards --- In amibroker@yahoogroups.co

Re: [amibroker] Re: Identifying Pnf Patterns

2007-05-31 Thread Gary Nielson
my approach work? Any help much appreciated. > > > On 4/25/07, Don Lindberg <[EMAIL PROTECTED]> wrote: > > > > Horray That did it !! Turning Plot Grid to NO and Clicking on the > > chat gives me the values. Thanks to all who helped solve this problem! > > >

[amibroker] Re: Identifying Pnf Patterns

2007-05-30 Thread apfxtrader
t Grid to NO and Clicking on the > > chat gives me the values. Thanks to all who helped solve this problem! > > > > Don Lindberg > > > > > > -- > > > > *From:* amibroker@yahoogroups.com [mailto:[EMAIL PROTECTED] *On >

Re: [AmiBroker] Re: Identifying Pnf Patterns

2007-04-25 Thread ron
IF i do as Hanan AND Amon (that is an AND not an OR) said--I get the values to the right, but inside the inner box. i'm not smart enuf to figure out why... I know most of you know this, but the standard box size under $10/share is .5---not 1. So when you are comparing, say SUNW from other P&F

[amibroker] Re: Identifying Pnf Patterns

2007-04-25 Thread dmcleod1981
Excellent, thank you for the help. Sometimes its frustrating knowing that Amibroker can do what you want but trying to figure out how to make it happen can be daunting to us newbies. Thanks DM --- In amibroker@yahoogroups.com, "apfxtrader" <[EMAIL PROTECTED]> wrote: > > Delete at the beginning o

[amibroker] Re: Identifying Pnf Patterns

2007-04-25 Thread apfxtrader
Delete at the beginning of the code: GraphColor = ParamColor("GarphColor",colorLightGrey); And add below: Graphcolor = IIf(direction ==1, ParamColor("X_Color", colorGreen), ParamColor( "O_Color", colorRed)); PlotOHLC(Op, Hi, Lo, Cl,"", GraphColor , stylePointAndFigure|styleNoLabel, 0, 0 ,shi

[amibroker] Re: Identifying Pnf Patterns

2007-04-25 Thread apfxtrader
hanan.harush, You can simply delete: PlotGridLines = ParamToggle("PlotdGrid", "Yes|No", 1); if (PlotGridLines) { } or deactivate using "//" as follows: //PlotGridLines = ParamToggle("PlotdGrid", "Yes|No", 1); //if (PlotGridLines) //{ //}

Re: [amibroker] Re: Identifying Pnf Patterns

2007-04-25 Thread Italiazzi
. hanan.harush a écrit : You are not along :) I will try to add a few debug prints and comments so it will be clearer for all of us. Additional direction is something in the AB preferences that we are missing. Hanan --- In amibroker@yahoogroups.com , "Do

[amibroker] Re: Identifying Pnf Patterns

2007-04-25 Thread apfxtrader
Don, Can you show a picture of what you have

RE: [amibroker] Re: Identifying Pnf Patterns

2007-04-24 Thread Don Lindberg
Yes, and it makes no difference if it is on or off. _ From: amibroker@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of wavemechanic Sent: Tuesday, April 24, 2007 12:22 PM To: amibroker@yahoogroups.com Subject: Re: [amibroker] Re: Identifying Pnf Patterns Do you have "

[amibroker] Re: Identifying Pnf Patterns

2007-04-24 Thread hanan.harush
You are not along :) I will try to add a few debug prints and comments so it will be clearer for all of us. Additional direction is something in the AB preferences that we are missing. Hanan --- In amibroker@yahoogroups.com, "Don Lindberg" <[EMAIL PROTECTED]> wrote: > > > > --- In amibroker@y

Re: [amibroker] Re: Identifying Pnf Patterns

2007-04-24 Thread wavemechanic
Do you have "Show middle lines" selected under Properties|Axis & Grid? Bill - Original Message - From: "Don Lindberg" <[EMAIL PROTECTED]> To: Sent: Tuesday, April 24, 2007 2:32 PM Subject: [amibroker] Re: Identifying Pnf Patterns > > > --- In

[amibroker] Re: Identifying Pnf Patterns

2007-04-24 Thread Don Lindberg
--- In amibroker@yahoogroups.com, "apfxtrader" <[EMAIL PROTECTED]> wrote: I am frustated. I have tried all the changes you show below, but I still do not get the Axis price values. I have also tried changing graph color, text color, all to no avail. I really like the labeling feature and would li

[amibroker] Re: Identifying Pnf Patterns

2007-04-23 Thread apfxtrader
SUNW PF Chart Chart settings: Box = 1; Reverse = 3;

[amibroker] Re: Identifying Pnf Patterns

2007-04-23 Thread hanan.harush
--- In amibroker@yahoogroups.com, "apfxtrader" <[EMAIL PROTECTED]> wrote: > > 1. I get Endless loop error . > > It works just fine for me, however try to replace: > > while ( LastValue (bot)< LastValue (top)-0.5*box) > with : > for ( n=LastValue (bot); n< LastValue (top); n = n+box) > I do not

[amibroker] Re: Identifying Pnf Patterns

2007-04-23 Thread apfxtrader
1. I get Endless loop error . It works just fine for me, however try to replace: while ( LastValue (bot)< LastValue (top)-0.5*box) with : for ( n=LastValue (bot); n< LastValue (top); n = n+box) 2. I can not see the Axis price. easy fix: You need to set Preferences\Charting\Blank bars in rig

[amibroker] Re: Identifying Pnf Patterns

2007-04-23 Thread hanan.harush
--- In amibroker@yahoogroups.com, "apfxtrader" <[EMAIL PROTECTED]> wrote: > > Hi Don, > > Here you have it again including the PF chart code. > > You have to choose from parameters window: > 1. asset class (Stocks/Forex) > 2. Plot or not the chart grid > 3. Upon asset class selection the box size

[amibroker] Re: Identifying Pnf Patterns

2007-04-22 Thread apfxtrader
Hi Don, Here you have it again including the PF chart code. You have to choose from parameters window: 1. asset class (Stocks/Forex) 2. Plot or not the chart grid 3. Upon asset class selection the box size for FX or Stocks // COPY here GraphXSpa

RE: [amibroker] Re: Identifying Pnf Patterns

2007-04-22 Thread Don Lindberg
AM To: amibroker@yahoogroups.com Subject: [amibroker] Re: Identifying Pnf Patterns Hi Don , This is what I use: //= //PF CHART GRID CONSTRUCTION //== Class = ParamToggle("AssetClass"

[amibroker] Re: Identifying Pnf Patterns

2007-04-22 Thread apfxtrader
Hi Don , This is what I use: //= //PF CHART GRID CONSTRUCTION //== Class = ParamToggle("AssetClass", "Stocks|Forex", 1); PlotGridLines = ParamToggle("PlotdGrid", "Yes|No", 0); if (PlotGridLines) {