When I'm use StylenoLine
AB don't plot the
MA200
I would to plot the MA200, only when he FIT on the Price Bar Chart.
When is UNDER or OVER 20 or 25% of the Price Bar
Chart don't plot it !
Thank
Merci YLTech ( Yves L.
) Le présent message et les documents qui y sont joints sont
réservés exclusivement au destinataire indiqué. Il est strictement interdit d'en
utiliser ou d'en divulguer le contenu. Si vous recevez le présent message par
erreur, veuillez le détruire S.V.P. et nous en aviser immédiatement afin que
nous puissions corriger nos dossiers. Merci. This message and the
attached documents may contain privileged or confidential information that are
intended to the addressee only. Any unauthorized disclosure is strictly
prohibited. If you happen to receive this message by error, please delete it and
notify us immediately so that we may correct our internal records. Thank
you. yltech@xxxxxxxxxxxx
----- Original Message -----
Sent: Tuesday, October 13, 2009 9:08
AM
Subject: Re: [amibroker] Problem with
MA200 ???
I'm use a StylenoLine
in my new formula and is
the sme result
Look the formula below ?
_SECTION_BEGIN("Price");
SetChartOptions (0,chartShowArrows|chartShowDates);
_N (Title = StrFormat("{{NAME}} - {{INTERVAL}} {{DATE}} Open %g, Hi %g, Lo %g, Close
%g (%.1f%%) Vol " +WriteVal( V, 1.0 ) +" {{VALUES}}",
O, H, L, C, SelectedValue( ROC( C,
1 )) ));
Plot ( C, "Close", ParamColor("Color",
colorBlack ), styleNoTitle | ParamStyle("Style") | GetPriceStyle() );
if ( ParamToggle( "Tooltip shows", "All Values|Only
Prices" ) )
{
ToolTip=StrFormat("Open: %g\nHigh: %g\nLow: %g\nClose: %g (%.1f%%)\nVolume:
"+NumToStr( V, 1 ), O, H, L, C, SelectedValue( ROC( C,
1 )));
}
_SECTION_END ();
_SECTION_BEGIN ( "MA");
P = ParamField("Price
field",-1);
Periods = Param("Periods", 20, 2, 200, 1 );
Plot ( MA( P, Periods ), _DEFAULT_NAME(), ParamColor(
"Color", colorCustom12 ), ParamStyle( "Style") );
_SECTION_END ();
_SECTION_BEGIN ( "Mid MA");
P = ParamField("Price
field",-1);
Periods = Param("Periods", 50, 2, 200, 1 );
Plot ( MA( P, Periods ), _DEFAULT_NAME(), ParamColor(
"Color", colorRed ), ParamStyle( "Style") );
_SECTION_END ();
_SECTION_BEGIN ( "MA1");
P = ParamField("Price
field",-1);
Periods = Param("Periods", 100, 2, 200, 1 );
Plot ( MA( P, Periods ), _DEFAULT_NAME(), ParamColor(
"Color", colorBlue ), ParamStyle( "StylenoLine") );
_SECTION_END ();
_SECTION_BEGIN ( "MA2");
P = ParamField("Price
field",-1);
Periods = Param("Periods", 200, 2, 200, 1 );
Plot ( MA( P, Periods ), _DEFAULT_NAME(), ParamColor(
"Color", colorBlack ), ParamStyle( "StylenoLine") );
_SECTION_END ();
Merci YLTech ( Yves L.
) Le présent message et les documents qui y sont joints sont
réservés exclusivement au destinataire indiqué. Il est strictement interdit
d'en utiliser ou d'en divulguer le contenu. Si vous recevez le présent message
par erreur, veuillez le détruire S.V.P. et nous en aviser immédiatement afin
que nous puissions corriger nos dossiers. Merci. This message and
the attached documents may contain privileged or confidential information that
are intended to the addressee only. Any unauthorized disclosure is strictly
prohibited. If you happen to receive this message by error, please delete it
and notify us immediately so that we may correct our internal records. Thank
you. yltech@xxxxxxxxxxca
----- Original Message -----
Sent: Tuesday, October 13, 2009 2:09
AM
Subject: Re: [amibroker] Problem with
MA200 ???
Its because, the value is much
higher than current value. Use StylenoLine to show the value without the
line getting drawn if you are comfortable with having only value without
requiring a line.
Cheers
Prashanth
----- Original Message -----
Sent: Tuesday, October 13, 2009
10:15
Subject: [amibroker] Problem with
MA200 ??? [1 Attachment]
I have a big problem with the
MA200
I'm like a graph with MA20, 50, 100 and 200,
but
When Amibroker(AB) plot the MA200
The MA200 use 50% of the graph and I can't
see the candlestick(look BAD MA200.gif with it)
How plot the MA200 differently ?
Merci YLTech ( Yves L.
) Le présent message et les documents qui y sont joints sont
réservés exclusivement au destinataire indiqué. Il est strictement
interdit d'en utiliser ou d'en divulguer le contenu. Si vous recevez le
présent message par erreur, veuillez le détruire S.V.P. et nous en aviser
immédiatement afin que nous puissions corriger nos dossiers.
Merci. This message and the attached documents may contain
privileged or confidential information that are intended to the addressee
only. Any unauthorized disclosure is strictly prohibited. If you happen to
receive this message by error, please delete it and notify us immediately
so that we may correct our internal records. Thank you. yltech@xxxxxxxxxxca
__._,_.___
**** IMPORTANT PLEASE READ ****
This group is for the discussion between users only.
This is *NOT* technical support channel.
TO GET TECHNICAL SUPPORT send an e-mail directly to
SUPPORT {at} amibroker.com
TO SUBMIT SUGGESTIONS please use FEEDBACK CENTER at
http://www.amibroker.com/feedback/
(submissions sent via other channels won't be considered)
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
__,_._,___
|