Difference between revisions of "Main Page"

From MultiCharts
Jump to navigation Jump to search
Line 14: Line 14:
 
==Studies==
 
==Studies==
  
[[portfolio]]
+
<categorytree mode=pages>EasyLanguage</categorytree>
  
  

Revision as of 13:31, 16 January 2012

About MultiCharts 7

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. 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

Studies

no pages or subcategories


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.}