- ago
How would you extract the trading info from Signals (Alerts)? I looked through the Help Manual and the Discussion board and could not find any. Is it something like the code below?

Transaction a = Signals[at some index];
String symbol = a.Symbol;

What is the different between these properties within a Signal object?
FillPrice vs. ExcutionPrice, vs. OrderPrice?
FillQuantity vs. Quantity?

Thanks.
0
463
4 Replies

Reply

Bookmark

Sort
- ago
#1
It's the Transaction object that is returned when you call PlaceTrade to create a trade. The properties that can be queried are documented in the QuickRef > Transaction. Signals represent future trades (transactions) and do not refer to historical or past hypothetical trades created by your Strategy.
0
- ago
#2
Thanks Eugene. I was asking about the future transactions (Signals/Alerts). How do you access properties of a future transaction? Is the code something like the example shown below?

CODE:
String Symbol = Signals[index X].Symbol;


Thanks.
0
- ago
#3
Have you seen the QuickRef > Transaction?
0
- ago
#4
Yes I did. Thanks.
0

Reply

Bookmark

Sort