PureBytes Links
Trading Reference Links
|
To make a thicker line, just plot the same line a few times at small
increments. For instance, I use this function for indicators:
Hope it helps
function Drawthickline(Startpoint, DrawColor)
{
Offset = 0.01;
if (ST == "ER")
{Offset = .001;}
if (ST == "YM")
{Offset = .3;}
if (ST == "EU" OR ST == "FG" OR ST == "AU" OR ST == "GB")
{Offset = .000001;}
//Offset = .001;
Plot(Startpoint, "", DrawColor, 5);
Plot(Startpoint+Offset, "", DrawColor, 5+4096);
Plot(Startpoint+Offset, "", DrawColor, 5+4096);
Plot(Startpoint+Offset, "", DrawColor, 5+4096);
Plot(Startpoint+Offset, "", DrawColor, 5+4096);
}
----- Original Message -----
From: "brian_z111" <brian_z111@xxxxxxxxx>
To: <amibroker@xxxxxxxxxxxxxxx>
Sent: Wednesday, January 30, 2008 8:49 AM
Subject: [amibroker] Re: Trading platform + AB
> >Chart-Trading is really the thing of the future. In Amibroker it is
>>possible to create VERY visually revealing charts/display that can
>>be interpreted by the trader a hundred times faster that scrolling
>>tables with lots of numbers
>
> Yes, Higgs post on the current speed of execution at the Merc was
> sobering and we would be burying our heads in the sand if we didn't
> think of ways to utilize speed to our advantage (especially for an
> old tortoise like me).
>
> One of my strengths as a trader is that I don't have a lot of things
> to unlearn so I just follow where the bouncing ball takes me and 'in
> time trading' based on visual cues is definitely where I am at.
>
> Keep up the good work Herman.
>
> However since my eyesight is not as good as it used to be before I
> got glasses some thick, thicker and thickest lines would be nice not
> to mention some dashed, dashier and dashiest ones as well (anybody
> got some code for a thick and thin dashed and dotted vertical line?)
>
>
>
> brian_z
>
>
>
> 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 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
>
>
>
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 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
<*> 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/
|