Read Custom SymbolESPL has functions which return a custom symbol type, symbols, times and multipliers from the formula.begin if who=8 then begin writeln(CustomSymbol(eCustom,'LXAX9Z')); {return type, ie spread, crush} writeln(CustomSymbol(eSymbol,'LXAX9Z',2)); {return 2nd symbol} writeln(CustomSymbol(eTime,'LXAX9Z',2)); {return 2nd time} writeln(CustomSymbol(eMultiplier,'LXAX9Z',2)); {return 2nd multiplier} end; end; The 1st parameter is the field name. The 2nd parameter is the custom symbol name. The 3rd parameter is an index 0..6 to reference which symbol, time, or multiplier in the formula. eSymbol will return the symbol, index 1..6, with the market group as the 1st character, and the visual symbol starting in the 2nd character position. ESPL has functions which resize a chart's study panel height. eStudySize1 is a percentage of the chart window that will be used by the 1st
study sub-window. ESPL has functions for controlling a chart's font style and size. |