HandleStopLossPlus
unknown
csharp
4 years ago
438 B
6
Indexable
TriggerCustomEvent(q =>
{
Order stopLoss = null;
string signalName = null;
double overrideStopLossPrice = 0;
if (Keyboard.IsKeyDown(Key.NumPad9))
{
myTickHunter objstopLoss = new myTickHunter();
objstopLoss.HandleStopLossPlus(signalName, overrideStopLossPrice);
stopLoss = objstopLoss;
}
account.Submit(new[] { stopLoss });
}, null);
e.Handled = true;Editor is loading...