[amibroker] plotText

2008-03-21 Thread KBH
I Have been trying to plot text and keep getting errors. PlotText( ''text'', x, y, color, bkcolor = colorDefault ) What am I doing wrong. PlotText(“Close”, C, 680.00, colorBlack, colorWhite) All I am trying to do is plot text on chart, somewhere, anywhere so I can then mess with the

[amibroker] plottext

2010-07-28 Thread Anthony Faragasso
I would like to stick a date on the chart tied to a specific condition and not have the date change when moving through the chart...any help appreciated. Thank you Anthony

[amibroker] Plottext Question

2009-12-15 Thread Prashanth
Hello, How do I do write on the chart, Signal from another time frame other than the one my chart is currently displaying. For example, I most of the time have my chart in hourly mode but will like to write on the chart itself as to whether the system is in Buy / Sell mode in Daily and other t

Re: [amibroker] plotText

2008-03-21 Thread Prashanth
You need 2 co-ordinates.Also, close is a Reserved word, use Example for example :) Cheers Prashanth - Original Message - From: KBH To: amibroker@yahoogroups.com Sent: Friday, March 21, 2008 2:37 PM Subject: [amibroker] plotText I Have been trying to plot text and keep

Re: [amibroker] plotText

2008-03-21 Thread Tomasz Janeczko
omasz Janeczko amibroker.com - Original Message - From: KBH To: amibroker@yahoogroups.com Sent: Friday, March 21, 2008 10:07 AM Subject: [amibroker] plotText I Have been trying to plot text and keep getting errors. PlotText( ''text'', x, y, colo

[amibroker] PlotText question

2006-09-05 Thread Mr. Valley
I have looked at the PlotText examples and can't seem to figure it out to use it in other ways than the example.I guess I'm having trouble understanding where to put it on the x and y axis according to a value and then how to shift the plot left and right.//In the example below... x1 = Par

[amibroker] PlotText ... ShapeText?

2006-09-10 Thread Mr. Valley
Speaking of  Text tricks, How do I a simple PlotText like the picture attached...I was thinking, How can you do a Text as a Shape to use it in PlotShapes, I guess, that way there would be an offset to plot on or above the line...Somehow, I know it has to be possible, but I thought it w

Re: [amibroker] plottext

2010-07-28 Thread Inquisitive Voyager
what is that condition? On Thu, Jul 29, 2010 at 7:46 AM, Anthony Faragasso wrote: > > > I would like to stick a date on the chart tied to a specific condition and > not > have the date change when moving through the chart...any help appreciated. > > Thank you > Anthony > > >

Re: [amibroker] plottext

2010-07-29 Thread Anthony Faragasso
*ATR(10); for( i = 0; i < BarCount; i++ ) { if(Condcolor[i]) PlotText(Date() +"\n"+ C[i],i, H[i]+dist[i], colorRed ); } - Original Message - From: Inquisitive Voyager To: amibroker@yahoogroups.com Sent: Thursday, July 29, 2010 1:14 AM Subject: Re: [amibro

Re: [amibroker] plottext

2010-07-29 Thread Paul D
+ C[i],i, H[i]+dist[i], colorRed ); } From: Anthony Faragasso To: amibroker@yahoogroups.com Sent: Thu, July 29, 2010 3:57:22 AM Subject: Re: [amibroker] plottext It can be any single condition... I have been able to plottext the date , but when I move the selector an

Re: [amibroker] plottext

2010-07-29 Thread Anthony Faragasso
Paul, Thank you...it worked. Anthony - Original Message - From: Paul D To: amibroker@yahoogroups.com Sent: Thursday, July 29, 2010 7:13 AM Subject: Re: [amibroker] plottext This worked for me. I put a dummy rule in for condcolor to test. You can't use

Re: [amibroker] PlotText question

2006-09-06 Thread Graham
try this, hoping I understand your query correctlyx1 = Param("x1 test",0,-10,10,1);y1 = Param("y1 test",0,-10,10,1);Plot(10,"",1,1);Plot(20,"",1,1);Plot(0,"",1,1); bi = BarIndex()==LastValue(BarIndex());for( i = 0; i < BarCount; i++ ) {  if( Bi[i] )  PlotText("MyTest",i+x1,10+y1,colorBlue);} --

[amibroker] PlotText & Formatting Decimals?

2006-05-01 Thread Peter
Hi Is there a way to format a number to a set number of decimal places. E.g. In the below example round the number to 2 decimal places.   PlotText( "Buy @ "+ 1234.5678, xCoordinate , yCoordinate , PlotColour , colorWhite );   It seems that formatting used in printf e.g. printf ("2

[amibroker] Plottext the pivot's price

2009-10-09 Thread Reinsley
Hi, This little mod plots the pivot's price. The low pivot's price is displayed two carriage return under the *** This solution is nice as the vertical shift does not vary up to the pane's number or pane's size. I can't find the syntax to plottext the prices above the high pivot. The only way I

[amibroker] PlotText in a loop

2008-12-19 Thread reinsley
Hi, Can somebody help me to correct this formula ? I'd like to write the X value of the dot line just once, at the end of each line. Thank you for the help Best regards //PIVOTS LEVELS // turning points tn = Now(); _TRACE("***Time = "+tn); top = C==HHV(C,3); bot = C==LL

RE: [amibroker] PlotText & Formatting Decimals?

2006-05-01 Thread Gordon Sutherland
[ i ]*100)/100, i, H[ i ]+dist[i], colorRed, colorYellow ); }     -Original Message- From: amibroker@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Peter Sent: Monday, 1 May 2006 9:30 p.m. To: amibroker@yahoogroups.com Subject: [amibroker] PlotText & Formatting Decimals?  

RE: [amibroker] PlotText & Formatting Decimals?

2006-05-01 Thread Terry
ter Sent: Monday, May 01, 2006 03:30 To: amibroker@yahoogroups.com Subject: [amibroker] PlotText & Formatting Decimals?   Hi Is there a way to format a number to a set number of decimal places. E.g. In the below example round the number to 2 decimal places.   PlotText( "Buy @

RE: [amibroker] PlotText & Formatting Decimals?

2006-05-01 Thread Peter
al Message- From: amibroker@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Terry Sent: Tuesday, 2 May 2006 2:37 a.m. To: amibroker@yahoogroups.com Subject: RE: [amibroker] PlotText & Formatting Decimals?   Right. You either change the default number of decimal places in Tools->P

Re: [amibroker] PlotText & Formatting Decimals?

2006-05-01 Thread Mark H
Monday, May 01, 2006 3:06 PM Subject: RE: [amibroker] PlotText & Formatting Decimals? Terry. I have the preferences set to 2 decimal places but the below plot gives 4 decimal places. I’m not sure what you mean with your remarks about Title. How do you use Title and or print

Re: [amibroker] Plottext the pivot's price

2009-10-09 Thread Panos Boufardeas
Hi try this way if ( mu == num ) { PlotText( ""+H[b]+"\n" , b, H[b], colorRed ); //p = StrRight( NumToStr( H[b], 4.1 ), rightfig ); //PlotText( p , b - 2, H[b] + vertshift , colorRed ); } Panos At 15:58 09-10-2009 09-10-2009, you wrote: > > >Hi, > >This little mod plots the pivot's price. >

Re: [amibroker] Plottext the pivot's price

2009-10-10 Thread reinsley
Thank you Panos, Your solution place the stars inside the candle. I give up to find a solution with \n. I keep the following formula that is acceptable. Version with one star and an auto adjust space. Best Regards // Plot line on pivot and price // does not reference to future // add the piv

Re: [amibroker] Plottext the pivot's price

2009-10-10 Thread Rick Osborn
PlotText( p , b - 2, H[b] + vertshift , colorRed ); */ } Best Regards Rick Osborn From: reinsley To: amibroker@yahoogroups.com Sent: Sat, October 10, 2009 9:18:58 AM Subject: Re: [amibroker] Plottext the pivot's price Thank you Panos, Your

Re: [amibroker] Plottext the pivot's price

2009-10-10 Thread reinsley
b] + vertshift , colorRed ); > */ > } > > > Best Regards > Rick Osborn > > > > *From:* reinsley > *To:* amibroker@yahoogroups.com > *Sent:* Sat, October 10, 2009 9:18:58 AM > *Subj

[amibroker] PlotText problem when using SelectedValue

2008-10-13 Thread ozzyapeman
I've used PlotText successfully before, but seem to have a problem when using it with SelectedValue. Hope someone can help. What I am trying to achieve is pretty simple - When I click on a bar, I want to see the value of the slope of the 10-period linear regression line. This is what I have: Slo