-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathChannel_Trailing_LX.Strategy.CS
52 lines (42 loc) · 1.41 KB
/
Channel_Trailing_LX.Strategy.CS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
using System;
using PowerLanguage.Function;
namespace PowerLanguage.Strategy
{
[IOGMode(IOGMode.Disabled)]
public class Channel_Trailing_LX : SignalObject
{
private LowestFC m_LowestFC;
private IOrderPriced m_ChTrLX;
public Channel_Trailing_LX(object ctx) :
base(ctx)
{
FloorAmt = 1;
Length = 3;
}
[Input]
public int Length { get; set; }
[Input]
public double FloorAmt { get; set; }
[Input]
public bool IsPositionBasis { get; set; }
protected override void Create(){
m_LowestFC = new LowestFC(this);
m_ChTrLX =
OrderCreator.Stop(new SOrderParameters(Contracts.Default, "ChTrLX", EOrderAction.Sell,
OrderExit.FromAll));
}
protected override void StartCalc(){
m_LowestFC.pricevalue = Bars.Low;
m_LowestFC.len = Length;
}
protected override void CalcBar(){
double FloorProfit = IsPositionBasis ? FloorAmt : FloorAmt*StrategyInfo.MarketPosition;
double SellPrice = m_LowestFC[0];
if (StrategyInfo.MarketPosition > 0
&& PublicFunctions.DoubleGreaterEquals(this.MaxPositionProfit(), FloorProfit))
{
m_ChTrLX.Send(SellPrice);
}
}
}
}