Search found 5 matches
- Mon Nov 08, 2021 3:46 am
- Forum: IBPlugin
- Topic: Requesting a simple Easy Language/Strategy example using IBPlugin
- Replies: 3
- Views: 15773
Re: Requesting a simple Easy Language/Strategy example using IBPlugin
First of all, there is no BUY statement in your small ts_signal strategy. This is what you have: inputs: Length( 9 ); variables: Avg( 0 ) ; Avg = AverageFC( Close, Length ) ; if Initialized = 0 then begin once clearprintlog; etc., etc., etc., If I attach that strategy/script to a chart it will just ...
- Sat Nov 06, 2021 3:30 am
- Forum: IBPlugin
- Topic: Requesting a simple Easy Language/Strategy example using IBPlugin
- Replies: 3
- Views: 15773
Requesting a simple Easy Language/Strategy example using IBPlugin
I am fluent in Easy Language but I cannot get the IBPlugin code to work in a strategy in any way, shape or form. I am requesting for anyone to post a strategy in Easy Language that uses the IBPlugin and performs successfully. I would like to see the exact implementation of how the IBPlugin is arrang...
- Tue Oct 26, 2021 7:50 pm
- Forum: IBPlugin
- Topic: What am I doing wrong here?
- Replies: 6
- Views: 27078
Re: What am I doing wrong here?
So I've been experimenting around with it and I've found that when I change the symbol to EURUSD, with the CONID you use in the demo, the orders go through, but they fire off repeated orders every second. Within a minute I had about thirty buy orders filled. Obviously it's a Demo account so no big d...
- Tue Oct 26, 2021 5:43 pm
- Forum: IBPlugin
- Topic: What am I doing wrong here?
- Replies: 6
- Views: 27078
Re: What am I doing wrong here?
Thanks for responding.... so I'm using Tradestation 10. I used your corrected code but it's still doing the same thing. As soon as I run the strategy I see an order flash in the API tab in TWS for just a millisecond and then it disappears. It keeps doing that about every few seconds. During which th...
- Mon Oct 25, 2021 11:56 pm
- Forum: IBPlugin
- Topic: What am I doing wrong here?
- Replies: 6
- Views: 27078
What am I doing wrong here?
Hello, I'm trying to get the IBPlugin working with just a basic strategy I'm testing it out with in Tradestation but I'm obviously doing something wrong. I can tell an order is being sent but it seems to be instantly cancelled and then Tradestation crashes and I have to restart. It seems to be getti...