+1 888 340 6572

Main Page: Difference between revisions

From MultiCharts
No edit summary
No edit summary
Line 1: Line 1:
== About MultiCharts 7 ==
== About MultiCharts==
 
http://www.multicharts.com/images/logo.png


[[MultiCharts]] is an award-winning [[trading platform]]. Whether you are a new trader or a professional, MultiCharts has features that may help you achieve your trading goals. High-definition charting, built-in indicators and strategies, one-click trading from chart and DOM, high-precision backtesting, brute-force and genetic optimization, automated execution and support for EasyLanguage scripts are all key tools at your disposal.
[[MultiCharts]] is an award-winning [[trading platform]]. Whether you are a new trader or a professional, MultiCharts has features that may help you achieve your trading goals. High-definition charting, built-in indicators and strategies, one-click trading from chart and DOM, high-precision backtesting, brute-force and genetic optimization, automated execution and support for EasyLanguage scripts are all key tools at your disposal.
Freedom of choice has been the driving idea behind our MultiCharts and you can see it in the wide choice of supported data feeds and brokers. Choose your trading method, test it, and start trading with any supported broker you like—that's the advantage of [[MultiCharts]].
Freedom of choice has been the driving idea behind our MultiCharts and you can see it in the wide choice of supported data feeds and brokers. Choose your trading method, test it, and start trading with any supported broker you like—that's the advantage of [[MultiCharts]].


== How to use ==


==Help==
==Help==
Line 15: Line 12:


<categorytree mode=pages>EasyLanguage</categorytree>
<categorytree mode=pages>EasyLanguage</categorytree>
<syntaxhighlight>
INPUTS: PERIOD(10), PCNT(.15);
VARS: AMAVAL(0), AMAFVAL(0), AMALS(0), AMAHS(0);
AMAVAL = AMA(PERIOD);
AMAFVAL = AMAF(PERIOD, PCNT);
IF CURRENTBAR = 1 THEN BEGIN
AMALS = AMAVAL;
AMAHS = AMAVAL;
END ELSE BEGIN
IF AMAVAL < AMAVAL[1] THEN
AMALS = AMAVAL;
IF AMAVAL > AMAVAL[1] THEN
AMAHS = AMAVAL;
IF AMAVAL - AMALS > AMAFVAL THEN BEGIN
PLOT1(AMAFVAL, "BUY");
IF PLOT1[1] = 0 THEN
ALERT = TRUE;
END ELSE
IF AMAHS - AMAVAL > AMAFVAL THEN BEGIN
PLOT2(AMAFVAL, "SELL");
IF PLOT2[1] = 0 THEN
ALERT = TRUE;
END;
PLOT3(AMAFVAL, "AMAFILTER");
END;
{COPYRIGHT 1997 TECHNICAL ANALYSIS, INC.}
</syntaxhighlight>

Revision as of 13:31, 16 January 2012

About MultiCharts

MultiCharts is an award-winning trading platform. Whether you are a new trader or a professional, MultiCharts has features that may help you achieve your trading goals. High-definition charting, built-in indicators and strategies, one-click trading from chart and DOM, high-precision backtesting, brute-force and genetic optimization, automated execution and support for EasyLanguage scripts are all key tools at your disposal. Freedom of choice has been the driving idea behind our MultiCharts and you can see it in the wide choice of supported data feeds and brokers. Choose your trading method, test it, and start trading with any supported broker you like—that's the advantage of MultiCharts.


Help

Studies

Category EasyLanguage not found