вебинар для клиентов 25.04.2011

4/20/2011 10:16:26 PM
Gravatar
Total Posts 151

вебинар для клиентов 25.04.2011

Тема для обсуждения - методика закрытия позиций. Пишите нам на почту для включения в список приглашенных.

4/25/2011 11:04:12 PM
Gravatar
Total Posts 151

RE:вебинар для клиентов 25.04.2011

Закрытие нескольких позиций.

[CODE]using System;

using System.Collections.Generic;

using System.Text;

using System.Drawing;

using WealthLab;

using WealthLab.Indicators;

namespace WealthLab.Strategies

{

public class MyStrategy : WealthScript

{

protected override void Execute()

{

SetShareSize(1);

for(int bar = 20; bar < Bars.Count; bar++)

{

//if (IsLastPositionActive)

//if(LastActivePosition!=null)

if(ActivePositions.Count>0)

{

if(bar%12==0)

{

for(int i=ActivePositions.Count-1;i>=0;i--)

SellAtMarket(bar+1, ActivePositions);

}

}

else

{

if(bar%13==0)

{

BuyAtMarket(bar+1);

if(bar%23==0)

{

BuyAtMarket(bar+1);

}

}

}

}

}

}

}[/CODE]