[amibroker] Help needed in coding

2010-06-16 Thread Vinay Gakkhar.
I need help in solving my following coding problem.SAR_cycle_start and SAR_cycle_end tell me the value at the start & the end of the SAR cycle.I want to know the value at the highest point of the SAR cycle, and of the lowest point of the SAR cycle.Can someone please tell me what to write to get

[amibroker] Help needed in coding

2010-06-15 Thread Vinay Gakkhar
I need help in solving my following coding problem. SAR_cycle_start and SAR_cycle_end tell me the value at the start & the end of the SAR cycle. I want to know the value at the highest point of the SAR cycle, and of the lowest point of the SAR cycle. Can someone please tell me what to write to

Re: [amibroker] Help needed in coding

2010-03-29 Thread Vinay Gakkhar.
Dear Prashanth, Yes, this is what I was looking for. Thank you very much. vgakkhar On Tue, 30 Mar 2010 09:46:53 +0530, Prashanth K wrote: > Is this what you are looking for, > > shape = Buy * shapeUpArrow + Sell * shapeDownArrow; > PlotShapes( shape, IIf( Buy, colorGreen, colorRed ), 0, IIf(

Re: [amibroker] Help needed in coding

2010-03-29 Thread Prashanth K
Is this what you are looking for, shape = Buy * shapeUpArrow + Sell * shapeDownArrow; PlotShapes( shape, IIf( Buy, colorGreen, colorRed ), 0, IIf( Buy, Low, High ) ); shape1 = Cover * shapeHollowUpTriangle + Short * shapeHollowDownTriangle; PlotShapes( shape1, IIf( Cover, colorBrightGreen, colorO

[amibroker] Help needed in coding

2010-03-29 Thread Vinay Gakkhar.
Dear knowledgeable members of the forum, Using PlotShapes, I want to show through up & down arrows of different colors the point when a buy or sell candlestick starts or ends forming. Someone please help me and provide me the lines of the code to be added to my present code. Thank you very muc