Support Board
Date/Time: Tue, 22 Apr 2025 03:15:53 +0000
Post From: Order Entry - Limit Order at Close of Last Candle?
[2023-02-16 19:34:22] |
ondafringe - Posts: 322 |
@User566250 If you don't want to use either DOM, your only alternative is a custom study. But EasyLanguage isn't C++, so there will be a learning curve. Should you decide to code it up, IMO, you have two options: 1. Code your entire trading strategy so you are fully automated (longer learning curve). 2. Code just the trade entry part and set up a keyboard shortcut to place the order (shorter learning curve). As far as the second option goes, you would watch for your setup, then you would press the "b" key for buy, or press the "s" key for sell. And your code would automatically place a buy/sell limit order at the closing price of the previous bar. Either that or, like @Mercrastius said, you'll have to make peace with one of the DOMs. |