PlaceStopOrder Method (21)
PlaceStopOrder (1 of 21)
Summary
Place a stop order
Signature
| public TradeResult PlaceStopOrder(TradeType tradeType, string symbolName, double volume, double targetPrice)
|
Parameters
Name | Type | Description |
tradeType | TradeType | Direction of trade |
symbolName | string | Symbol name of trade |
volume | double | Volume (in units) of trade |
targetPrice | double | Price at which order becomes a market order |
Return Value
TradeResult
Declaring Type
cAlgo.API.Robot
Examples
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 | namespace cAlgo.Robots
{
[Robot]
public class myCBot : Robot
{
protected override void OnStart()
{
//This method is called when the cBot is being started, once.
}
protected override void OnBar()
{
// Called on each incoming Bar.
}
protected override void OnTick()
{
// Called on each incoming tick.
}
protected override void OnError(Error error)
{
Print("There has been an Error");
}
protected override void OnStop()
{
//This method is called when the cBot is being stoped.
}
}
|
PlaceStopOrder (2 of 21)
Summary
Place a stop order
Signature
| public TradeResult PlaceStopOrder(TradeType tradeType, string symbolName, double volume, double targetPrice, string label)
|
Parameters
Name | Type | Description |
tradeType | TradeType | Direction of trade |
symbolName | string | Symbol name of trade |
volume | double | Volume (in units) of trade |
targetPrice | double | Price at which order becomes a market order |
label | string | Representing label |
Return Value
TradeResult
Declaring Type
cAlgo.API.Robot
Examples
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 | namespace cAlgo.Robots
{
[Robot]
public class myCBot : Robot
{
protected override void OnStart()
{
//This method is called when the cBot is being started, once.
}
protected override void OnBar()
{
// Called on each incoming Bar.
}
protected override void OnTick()
{
// Called on each incoming tick.
}
protected override void OnError(Error error)
{
Print("There has been an Error");
}
protected override void OnStop()
{
//This method is called when the cBot is being stoped.
}
}
|
PlaceStopOrder (3 of 21)
Summary
Place a stop order
Signature
| public TradeResult PlaceStopOrder(TradeType tradeType, string symbolName, double volume, double targetPrice, string label, double? stopLossPips, double? takeProfitPips)
|
Parameters
Name | Type | Description |
tradeType | TradeType | Direction of trade |
symbolName | string | Symbol name of trade |
volume | double | Volume (in units) of trade |
targetPrice | double | Price at which order becomes a market order |
label | string | Representing label |
stopLossPips | double? | Stop loss in pips |
takeProfitPips | double? | Take profit in pips |
Return Value
TradeResult
Declaring Type
cAlgo.API.Robot
Examples
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 | namespace cAlgo.Robots
{
[Robot]
public class myCBot : Robot
{
protected override void OnStart()
{
//This method is called when the cBot is being started, once.
}
protected override void OnBar()
{
// Called on each incoming Bar.
}
protected override void OnTick()
{
// Called on each incoming tick.
}
protected override void OnError(Error error)
{
Print("There has been an Error");
}
protected override void OnStop()
{
//This method is called when the cBot is being stoped.
}
}
|
PlaceStopOrder (4 of 21)
Summary
Place a stop order
Signature
| public TradeResult PlaceStopOrder(TradeType tradeType, string symbolName, double volume, double targetPrice, string label, double? stopLossPips, double? takeProfitPips, DateTime? expiration)
|
Parameters
Name | Type | Description |
tradeType | TradeType | Direction of trade |
symbolName | string | Symbol name of trade |
volume | double | Volume (in units) of trade |
targetPrice | double | Price at which order becomes a market order |
label | string | Representing label |
stopLossPips | double? | Stop loss in pips |
takeProfitPips | double? | Take profit in pips |
expiration | DateTime? | Order expiry time |
Return Value
TradeResult
Declaring Type
cAlgo.API.Robot
Examples
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 | namespace cAlgo.Robots
{
[Robot]
public class myCBot : Robot
{
protected override void OnStart()
{
//This method is called when the cBot is being started, once.
}
protected override void OnBar()
{
// Called on each incoming Bar.
}
protected override void OnTick()
{
// Called on each incoming tick.
}
protected override void OnError(Error error)
{
Print("There has been an Error");
}
protected override void OnStop()
{
//This method is called when the cBot is being stoped.
}
}
|
PlaceStopOrder (5 of 21)
Summary
Place a stop order
Signature
| public TradeResult PlaceStopOrder(TradeType tradeType, string symbolName, double volume, double targetPrice, string label, double? stopLossPips, double? takeProfitPips, DateTime? expiration, string comment)
|
Parameters
Name | Type | Description |
tradeType | TradeType | Direction of trade |
symbolName | string | Symbol name of trade |
volume | double | Volume (in units) of trade |
targetPrice | double | Price at which order becomes a market order |
label | string | Representing label |
stopLossPips | double? | Stop loss in pips |
takeProfitPips | double? | Take profit in pips |
expiration | DateTime? | Order expiry time |
comment | string | Order comment |
Return Value
TradeResult
Declaring Type
cAlgo.API.Robot
Examples
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 | namespace cAlgo.Robots
{
[Robot]
public class myCBot : Robot
{
protected override void OnStart()
{
//This method is called when the cBot is being started, once.
}
protected override void OnBar()
{
// Called on each incoming Bar.
}
protected override void OnTick()
{
// Called on each incoming tick.
}
protected override void OnError(Error error)
{
Print("There has been an Error");
}
protected override void OnStop()
{
//This method is called when the cBot is being stoped.
}
}
|
PlaceStopOrder (6 of 21)
Summary
Place a stop order
Signature
| public TradeResult PlaceStopOrder(TradeType tradeType, string symbolName, double volume, double targetPrice, string label, double? stopLossPips, double? takeProfitPips, DateTime? expiration, string comment, bool hasTrailingStop)
|
Parameters
Name | Type | Description |
tradeType | TradeType | Direction of trade |
symbolName | string | Symbol name of trade |
volume | double | Volume (in units) of trade |
targetPrice | double | Price at which order becomes a market order |
label | string | Representing label |
stopLossPips | double? | Stop loss in pips |
takeProfitPips | double? | Take profit in pips |
expiration | DateTime? | Order expiry time |
comment | string | Order comment |
hasTrailingStop | bool | Enable/disable TrailingStop for position |
Return Value
TradeResult
Declaring Type
cAlgo.API.Robot
Examples
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 | namespace cAlgo.Robots
{
[Robot]
public class myCBot : Robot
{
protected override void OnStart()
{
//This method is called when the cBot is being started, once.
}
protected override void OnBar()
{
// Called on each incoming Bar.
}
protected override void OnTick()
{
// Called on each incoming tick.
}
protected override void OnError(Error error)
{
Print("There has been an Error");
}
protected override void OnStop()
{
//This method is called when the cBot is being stoped.
}
}
|
PlaceStopOrder (7 of 21)
Summary
Place a stop order
Signature
| public TradeResult PlaceStopOrder(TradeType tradeType, string symbolName, double volume, double targetPrice, string label, double? stopLossPips, double? takeProfitPips, DateTime? expiration, string comment, bool hasTrailingStop, StopTriggerMethod? stopLossTriggerMethod)
|
Parameters
Name | Type | Description |
tradeType | TradeType | Direction of trade |
symbolName | string | Symbol name of trade |
volume | double | Volume (in units) of trade |
targetPrice | double | Price at which order becomes a market order |
label | string | Representing label |
stopLossPips | double? | Stop loss in pips |
takeProfitPips | double? | Take profit in pips |
expiration | DateTime? | Order expiry time |
comment | string | Order comment |
hasTrailingStop | bool | Enable/disable TrailingStop for position |
stopLossTriggerMethod | StopTriggerMethod? | Trigger method for position's StopLoss |
Return Value
TradeResult
Declaring Type
cAlgo.API.Robot
Examples
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 | namespace cAlgo.Robots
{
[Robot]
public class myCBot : Robot
{
protected override void OnStart()
{
//This method is called when the cBot is being started, once.
}
protected override void OnBar()
{
// Called on each incoming Bar.
}
protected override void OnTick()
{
// Called on each incoming tick.
}
protected override void OnError(Error error)
{
Print("There has been an Error");
}
protected override void OnStop()
{
//This method is called when the cBot is being stoped.
}
}
|
PlaceStopOrder (8 of 21)
Summary
Place a stop order
Signature
| public TradeResult PlaceStopOrder(TradeType tradeType, string symbolName, double volume, double targetPrice, string label, double? stopLossPips, double? takeProfitPips, DateTime? expiration, string comment, bool hasTrailingStop, StopTriggerMethod? stopLossTriggerMethod, StopTriggerMethod stopOrderTriggerMethod)
|
Parameters
Name | Type | Description |
tradeType | TradeType | Direction of trade |
symbolName | string | Symbol name of trade |
volume | double | Volume (in units) of trade |
targetPrice | double | Price at which order becomes a market order |
label | string | Representing label |
stopLossPips | double? | Stop loss in pips |
takeProfitPips | double? | Take profit in pips |
expiration | DateTime? | Order expiry time |
comment | string | Order comment |
hasTrailingStop | bool | Enable/disable TrailingStop for position |
stopLossTriggerMethod | StopTriggerMethod? | Trigger method for position's StopLoss |
stopOrderTriggerMethod | StopTriggerMethod | Determines how pending order will be triggered in case it's a StopOrder |
Return Value
TradeResult
Declaring Type
cAlgo.API.Robot
Examples
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 | namespace cAlgo.Robots
{
[Robot]
public class myCBot : Robot
{
protected override void OnStart()
{
//This method is called when the cBot is being started, once.
}
protected override void OnBar()
{
// Called on each incoming Bar.
}
protected override void OnTick()
{
// Called on each incoming tick.
}
protected override void OnError(Error error)
{
Print("There has been an Error");
}
protected override void OnStop()
{
//This method is called when the cBot is being stoped.
}
}
|
PlaceStopOrder (9 of 21)
Summary
Place stop order in asynchronous execution mode
Signature
| public TradeResult PlaceStopOrder(TradeType tradeType, Symbol symbol, long volume, double targetPrice)
|
Parameters
Name | Type | Description |
tradeType | TradeType | Direction of trade |
symbol | Symbol | |
volume | long | Volume of trade |
targetPrice | double | Price at which the order becomes market order |
Return Value
TradeResult
Declaring Type
cAlgo.API.Robot
Examples
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 | namespace cAlgo.Robots
{
[Robot]
public class myCBot : Robot
{
protected override void OnStart()
{
//This method is called when the cBot is being started, once.
}
protected override void OnBar()
{
// Called on each incoming Bar.
}
protected override void OnTick()
{
// Called on each incoming tick.
}
protected override void OnError(Error error)
{
Print("There has been an Error");
}
protected override void OnStop()
{
//This method is called when the cBot is being stoped.
}
}
|
PlaceStopOrder (10 of 21)
Summary
Place stop order in asynchronous execution mode
Signature
| public TradeResult PlaceStopOrder(TradeType tradeType, Symbol symbol, double volume, double targetPrice)
|
Parameters
Name | Type | Description |
tradeType | TradeType | Direction of trade |
symbol | Symbol | |
volume | double | Volume of trade |
targetPrice | double | Price at which the order becomes market order |
Return Value
TradeResult
Declaring Type
cAlgo.API.Robot
Examples
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 | namespace cAlgo.Robots
{
[Robot]
public class myCBot : Robot
{
protected override void OnStart()
{
//This method is called when the cBot is being started, once.
}
protected override void OnBar()
{
// Called on each incoming Bar.
}
protected override void OnTick()
{
// Called on each incoming tick.
}
protected override void OnError(Error error)
{
Print("There has been an Error");
}
protected override void OnStop()
{
//This method is called when the cBot is being stoped.
}
}
|
PlaceStopOrder (11 of 21)
Summary
Place stop order in asynchronous execution mode
Signature
| public TradeResult PlaceStopOrder(TradeType tradeType, Symbol symbol, long volume, double targetPrice, string label)
|
Parameters
Name | Type | Description |
tradeType | TradeType | Direction of trade |
symbol | Symbol | |
volume | long | Volume of trade |
targetPrice | double | Price at which the order becomes market order |
label | string | Label representing the order |
Return Value
TradeResult
Declaring Type
cAlgo.API.Robot
Examples
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 | namespace cAlgo.Robots
{
[Robot]
public class myCBot : Robot
{
protected override void OnStart()
{
//This method is called when the cBot is being started, once.
}
protected override void OnBar()
{
// Called on each incoming Bar.
}
protected override void OnTick()
{
// Called on each incoming tick.
}
protected override void OnError(Error error)
{
Print("There has been an Error");
}
protected override void OnStop()
{
//This method is called when the cBot is being stoped.
}
}
|
PlaceStopOrder (12 of 21)
Summary
Place stop order in asynchronous execution mode
Signature
| public TradeResult PlaceStopOrder(TradeType tradeType, Symbol symbol, double volume, double targetPrice, string label)
|
Parameters
Name | Type | Description |
tradeType | TradeType | Direction of trade |
symbol | Symbol | |
volume | double | Volume of trade |
targetPrice | double | Price at which the order becomes market order |
label | string | Label representing the order |
Return Value
TradeResult
Declaring Type
cAlgo.API.Robot
Examples
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 | namespace cAlgo.Robots
{
[Robot]
public class myCBot : Robot
{
protected override void OnStart()
{
//This method is called when the cBot is being started, once.
}
protected override void OnBar()
{
// Called on each incoming Bar.
}
protected override void OnTick()
{
// Called on each incoming tick.
}
protected override void OnError(Error error)
{
Print("There has been an Error");
}
protected override void OnStop()
{
//This method is called when the cBot is being stoped.
}
}
|
PlaceStopOrder (13 of 21)
Summary
Place stop order in asynchronous execution mode
Signature
| public TradeResult PlaceStopOrder(TradeType tradeType, Symbol symbol, long volume, double targetPrice, string label, double? stopLossPips, double? takeProfitPips)
|
Parameters
Name | Type | Description |
tradeType | TradeType | Direction of trade |
symbol | Symbol | |
volume | long | Volume of trade |
targetPrice | double | Price at which the order becomes market order |
label | string | Label representing the order |
stopLossPips | double? | Stop loss in pips |
takeProfitPips | double? | Take profit in pips |
Return Value
TradeResult
Declaring Type
cAlgo.API.Robot
Examples
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 | namespace cAlgo.Robots
{
[Robot]
public class myCBot : Robot
{
protected override void OnStart()
{
//This method is called when the cBot is being started, once.
}
protected override void OnBar()
{
// Called on each incoming Bar.
}
protected override void OnTick()
{
// Called on each incoming tick.
}
protected override void OnError(Error error)
{
Print("There has been an Error");
}
protected override void OnStop()
{
//This method is called when the cBot is being stoped.
}
}
|
PlaceStopOrder (14 of 21)
Summary
Place stop order in asynchronous execution mode
Signature
| public TradeResult PlaceStopOrder(TradeType tradeType, Symbol symbol, double volume, double targetPrice, string label, double? stopLossPips, double? takeProfitPips)
|
Parameters
Name | Type | Description |
tradeType | TradeType | Direction of trade |
symbol | Symbol | |
volume | double | Volume of trade |
targetPrice | double | Price at which the order becomes market order |
label | string | Label representing the order |
stopLossPips | double? | Stop loss in pips |
takeProfitPips | double? | Take profit in pips |
Return Value
TradeResult
Declaring Type
cAlgo.API.Robot
Examples
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 | namespace cAlgo.Robots
{
[Robot]
public class myCBot : Robot
{
protected override void OnStart()
{
//This method is called when the cBot is being started, once.
}
protected override void OnBar()
{
// Called on each incoming Bar.
}
protected override void OnTick()
{
// Called on each incoming tick.
}
protected override void OnError(Error error)
{
Print("There has been an Error");
}
protected override void OnStop()
{
//This method is called when the cBot is being stoped.
}
}
|
PlaceStopOrder (15 of 21)
Summary
Place stop order in asynchronous execution mode
Signature
| public TradeResult PlaceStopOrder(TradeType tradeType, Symbol symbol, long volume, double targetPrice, string label, double? stopLossPips, double? takeProfitPips, DateTime? expiration)
|
Parameters
Name | Type | Description |
tradeType | TradeType | Direction of trade |
symbol | Symbol | |
volume | long | Volume of trade |
targetPrice | double | Price at which the order becomes market order |
label | string | Label representing the order |
stopLossPips | double? | Stop loss in pips |
takeProfitPips | double? | Take profit in pips |
expiration | DateTime? | Order expiry date and time |
Return Value
TradeResult
Declaring Type
cAlgo.API.Robot
Examples
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 | namespace cAlgo.Robots
{
[Robot]
public class myCBot : Robot
{
protected override void OnStart()
{
//This method is called when the cBot is being started, once.
}
protected override void OnBar()
{
// Called on each incoming Bar.
}
protected override void OnTick()
{
// Called on each incoming tick.
}
protected override void OnError(Error error)
{
Print("There has been an Error");
}
protected override void OnStop()
{
//This method is called when the cBot is being stoped.
}
}
|
PlaceStopOrder (16 of 21)
Summary
Place stop order in asynchronous execution mode
Signature
| public TradeResult PlaceStopOrder(TradeType tradeType, Symbol symbol, double volume, double targetPrice, string label, double? stopLossPips, double? takeProfitPips, DateTime? expiration)
|
Parameters
Name | Type | Description |
tradeType | TradeType | Direction of trade |
symbol | Symbol | |
volume | double | Volume of trade |
targetPrice | double | Price at which the order becomes market order |
label | string | Label representing the order |
stopLossPips | double? | Stop loss in pips |
takeProfitPips | double? | Take profit in pips |
expiration | DateTime? | Order expiry date and time |
Return Value
TradeResult
Declaring Type
cAlgo.API.Robot
Examples
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 | namespace cAlgo.Robots
{
[Robot]
public class myCBot : Robot
{
protected override void OnStart()
{
//This method is called when the cBot is being started, once.
}
protected override void OnBar()
{
// Called on each incoming Bar.
}
protected override void OnTick()
{
// Called on each incoming tick.
}
protected override void OnError(Error error)
{
Print("There has been an Error");
}
protected override void OnStop()
{
//This method is called when the cBot is being stoped.
}
}
|
PlaceStopOrder (17 of 21)
Signature
| public TradeResult PlaceStopOrder(TradeType tradeType, Symbol symbol, long volume, double targetPrice, string label, double? stopLossPips, double? takeProfitPips, DateTime? expiration, string comment)
|
Parameters
Name | Type | Description |
tradeType | TradeType | |
symbol | Symbol | |
volume | long | |
targetPrice | double | |
label | string | |
stopLossPips | double? | |
takeProfitPips | double? | |
expiration | DateTime? | |
comment | string | |
Return Value
TradeResult
Declaring Type
cAlgo.API.Robot
PlaceStopOrder (18 of 21)
Signature
| public TradeResult PlaceStopOrder(TradeType tradeType, Symbol symbol, double volume, double targetPrice, string label, double? stopLossPips, double? takeProfitPips, DateTime? expiration, string comment)
|
Parameters
Name | Type | Description |
tradeType | TradeType | |
symbol | Symbol | |
volume | double | |
targetPrice | double | |
label | string | |
stopLossPips | double? | |
takeProfitPips | double? | |
expiration | DateTime? | |
comment | string | |
Return Value
TradeResult
Declaring Type
cAlgo.API.Robot
PlaceStopOrder (19 of 21)
Signature
| public TradeResult PlaceStopOrder(TradeType tradeType, Symbol symbol, double volume, double targetPrice, string label, double? stopLossPips, double? takeProfitPips, DateTime? expiration, string comment, bool hasTrailingStop)
|
Parameters
Name | Type | Description |
tradeType | TradeType | |
symbol | Symbol | |
volume | double | |
targetPrice | double | |
label | string | |
stopLossPips | double? | |
takeProfitPips | double? | |
expiration | DateTime? | |
comment | string | |
hasTrailingStop | bool | |
Return Value
TradeResult
Declaring Type
cAlgo.API.Robot
PlaceStopOrder (20 of 21)
Signature
| public TradeResult PlaceStopOrder(TradeType tradeType, Symbol symbol, double volume, double targetPrice, string label, double? stopLossPips, double? takeProfitPips, DateTime? expiration, string comment, bool hasTrailingStop, StopTriggerMethod? stopLossTriggerMethod)
|
Parameters
Name | Type | Description |
tradeType | TradeType | |
symbol | Symbol | |
volume | double | |
targetPrice | double | |
label | string | |
stopLossPips | double? | |
takeProfitPips | double? | |
expiration | DateTime? | |
comment | string | |
hasTrailingStop | bool | |
stopLossTriggerMethod | StopTriggerMethod? | |
Return Value
TradeResult
Declaring Type
cAlgo.API.Robot
PlaceStopOrder (21 of 21)
Signature
| public TradeResult PlaceStopOrder(TradeType tradeType, Symbol symbol, double volume, double targetPrice, string label, double? stopLossPips, double? takeProfitPips, DateTime? expiration, string comment, bool hasTrailingStop, StopTriggerMethod? stopLossTriggerMethod, StopTriggerMethod stopOrderTriggerMethod)
|
Parameters
Name | Type | Description |
tradeType | TradeType | |
symbol | Symbol | |
volume | double | |
targetPrice | double | |
label | string | |
stopLossPips | double? | |
takeProfitPips | double? | |
expiration | DateTime? | |
comment | string | |
hasTrailingStop | bool | |
stopLossTriggerMethod | StopTriggerMethod? | |
stopOrderTriggerMethod | StopTriggerMethod | |
Return Value
TradeResult
Declaring Type
cAlgo.API.Robot
Last update: June 26, 2022