[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re[2]: EL Question



PureBytes Links

Trading Reference Links

You can find PushPop a free global variable at traders2traders
http://www.traders2traders.com/code&overviews/pushpop.htm

BB> There are a couple of 32-bit global variable utilities already in existence
BB> that you could use with EasyLanguage.

BB> With all due respect, I neither have utility names nor do I have contact
BB> information.

BB> The creation of the utility will definitely not originate from within
BB> EasyLanguage.  Otherwise, I would have already created the technique.

BB> I believe the technique is generic enough where one indicator column (
BB> RadarScreen ) will be used to set the global value.  For example:
BB> Value1 = SetGlblVal( GetSymbolName, Close ) ;
BB> Plot1( Close, "Plot1" ) ;

BB> Another indicator column ( RadarScreen ) will be used to retrieve the global
BB> value.  For example:
BB> if GetGlblVal( INDU ) <> 0 then
BB>   Value1 = GetGlblVal( MSFT ) / GetGlblVal( INDU ) ;
BB>   Plot1( Value1, "RltvStrngth" ) ;

BB> The sample above assumes the both MSFT and INDU were plotted in the quote
BB> window.

BB> Getting price data directly from the server is more difficult because of the
BB> lack of documentation or available information on the server API.