PureBytes Links
Trading Reference Links
|
In your code, most of your style commands are separated by commas rather
than pipes. AB interprets these constants as numbers so it probably thinks
you are trying to specify min/max values. Try replacing the commas with
pipes.
Steve
----- Original Message -----
From: "me_rayme" <rayme@xxxxxxx>
To: <amibroker@xxxxxxxxxxxxxxx>
Sent: Friday, April 01, 2005 6:48 PM
Subject: [amibroker] Re: Need Thicker Lines for Pivots
>
>
> I have a CRT monitor and styleThick DOES not work. See my other
> email where I sent a gif file showing all styles are the same.
>
> The red shows up not bad but other colors neen more thickness.
>
> Yes a variation of thickness would be great!!
>
> Ray
>
> --- In amibroker@xxxxxxxxxxxxxxx, "Ara Kaloustian" <ara1@xxxx> wrote:
>> I had asked Tomasz for thicker lines quite some time ago, but I
> guess at the
>> time there was not enough interest.
>>
>> My application was also pivots and thicker lines would be very
> useful.
>>
>> Also, "stylethick" works on a CRT monitor, but not on a LCD.
>>
>> So having "styleverythick" and "styleextrathick" would indeed be a
> great
>> help.
>>
>> If others are also interested, please speak up
>>
>> Ara
>>
>> ----- Original Message -----
>> From: "me_rayme" <rayme@xxxx>
>> To: <amibroker@xxxxxxxxxxxxxxx>
>> Sent: Friday, April 01, 2005 2:57 PM
>> Subject: [amibroker] Need Thicker Lines for Pivots
>>
>>
>> >
>> >
>> > See attached file. Plotted on YM futures today at end, one
> minute.
>> >
>> > All the three lines are IDENTICAL and not dotted and narrow.
>> >
>> > Must be a bug. I set the lines apart at price of 5 , will send
> gif
>> > file later.
>> >
>> > Ray
>> >
>> > TimeFrameSet(inHourly); // Was (inHourly)
>> > AVGh = Ref((L + H + C),-1)/3;
>> > " PPh:\t "+ Avgh;
>> > TimeFrameRestore();
>> > Plot( TimeFrameExpand
>> >
> (AVGh,inHourly,expandFirst),"",colorRed,styleStaircase,styleThick|sty
>> > leDots);
>> >
>> > TimeFrameSet(inHourly); // Was (inHourly)
>> > AVGh = Ref((L + H + C),-1)/3+5;
>> > " PPh:\t "+ Avgh;
>> > TimeFrameRestore();
>> > Plot( TimeFrameExpand
>> >
> (AVGh,inHourly,expandFirst),"",colorRed,styleStaircase,styleThick);
>> >
>> >
>> > TimeFrameSet(inHourly); // Was (inHourly)
>> > AVGh = Ref((L + H + C),-1)/3+10;
>> > " PPh:\t "+ Avgh;
>> > TimeFrameRestore();
>> > Plot( TimeFrameExpand
>> >
> (AVGh,inHourly,expandFirst),"",colorRed,styleStaircase,styleLine);
>> >
>> >
>> >
>> >
>> >
>> >
>> >
>> >
>> > Please note that this group is for discussion between users only.
>> >
>> > To get support from AmiBroker please send an e-mail directly to
>> > SUPPORT {at} amibroker.com
>> >
>> > For other support material please check also:
>> > http://www.amibroker.com/support.html
>> >
>> >
>> > Yahoo! Groups Links
>> >
>> >
>> >
>> >
>> >
>> >
>> >
>> >
>
>
>
>
>
>
> Please note that this group is for discussion between users only.
>
> To get support from AmiBroker please send an e-mail directly to
> SUPPORT {at} amibroker.com
>
> For other support material please check also:
> http://www.amibroker.com/support.html
>
>
> Yahoo! Groups Links
>
>
>
>
>
>
>
>
------------------------ Yahoo! Groups Sponsor --------------------~-->
What would our lives be like without music, dance, and theater?
Donate or volunteer in the arts today at Network for Good!
http://us.click.yahoo.com/Tcy2bD/SOnJAA/cosFAA/GHeqlB/TM
--------------------------------------------------------------------~->
Please note that this group is for discussion between users only.
To get support from AmiBroker please send an e-mail directly to
SUPPORT {at} amibroker.com
For other support material please check also:
http://www.amibroker.com/support.html
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> 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/
|