1. Upload indicator or strategy scripts samples
2. Scripts must include detailed description of every row, variable
Example:
--//--//--//--//--//--//--//--//--//--//--//--//--//--//--//--//--//--//--//--//--//--//--//--//
public class LWMPind : Indicator
{
#region Variables
private double numStdDev = 1; [COLOR="Red"][B]///this will be used in further rows to calculate "this" and "that" blah blah blah...[/B][/COLOR]
private int period = 360;
#endregion
/// <summary>
/// This method is used to configure the indicator and is called once before any bar data is loaded.
/// </summary>
protected override void Initialize()
{
Add(new Plot(Color.Green, "Upper ATR"));[COLOR="Red"][B]///this will be used in... blah blah blah... . "There" we refer to this plot using <value[0]>...[/B][/COLOR]
Add(new Plot(Color.Orange, "Upper band"));
--//--//--//--//--//--//--//--//--//--//--//--//--//--//--//--//--//--//--//--//--//--//--//--//

Comment