| Coding Forum Collaborate, receive help, or discuss coding related issues. |
![]() | | Tweet | |
| | #1 | ||
![]() | Help with TS Easy Language I am trying to put together a simple strategy program to: Place either a long or short market order at a specific time of the day. This order should be able to do the following. Enter at a specific time. Enter number of contracts. Choose between long of short entry. Once the order is set it should be reoccurring without having to set the date. This will allow me to back test without having to reset the date for each day. Example: The strategy could- Place a market order at 0930 hrs. (everyday) Long (or short) Number of contracts (10) I have tried to come up with the easy language program for this and have the following, but it will not verify. -------------------------------------------------------------------------------- inputs: LongOrShort( 1 ), { pass 1 to buy long, 2 to sell short } Quantity( 10 ), EntryBarTime_HHMM( 1300 ) ; { for intraday chart, pass in time of bar at which entry should occur, 24 hr format; entry will occur at the OPEN of the specified bar; for daily chart, time is ignored, can pass in 0 } variables: if Time next bar = EntryBarTime and ( BarType = 2 or ( BarType = 1 and Time next bar = EntryBarTime_HHMM ) ) then if LongOrShort = 1 then Buy Quantity shares next bar at market else Sell Short Quantity shares next bar at market ; -------------------------------------------------------------------------------- Can you help me fix it??? Thanks | ||
| |
|
| | #2 | ||
![]() | Re: Help with TS Easy Language it is the # icon at the top of the message window. Code: tagged code looks like this
__________________ Only an idiot would reply to a stupid post | ||
| |
|
| | #3 | ||
![]() | Re: Help with TS Easy Language Quote:
your error is a simple one, if I tell you the answer, you will come back for another question of similar problem. It would be a lot easier if you spend a few hours with the manual, and learn the basic syntax before you begin. After you have learned the basics, I can then help you with the more advanced stuff. ps. 1. maybe someone can give it a try. 2. it would help if you copy and paste the error message before you ask for assistence.
__________________ Only an idiot would reply to a stupid post | ||
| |
|
| | #4 | ||
![]() | Re: Help with TS Easy Language And fix the name of the input "EntryBarTime" Code: inputs:
LongOrShort( 1 ), { pass 1 to buy long, 2 to sell short }
Quantity( 10 ),
EntryBarTime_HHMM( 1300 ) ; { for intraday chart, pass in time of bar at which entry should occur, 24 hr format; entry will occur at the OPEN of the specified
bar; for daily chart, time is ignored, can pass in 0 }
if Time next bar = EntryBarTime_HHMM
and ( BarType = 2 or ( BarType = 1 and Time next bar = EntryBarTime_HHMM ) )
then
if LongOrShort = 1 then
Buy Quantity shares next bar at market
else
Sell Short Quantity shares next bar at market ;
__________________ Precise, "dialed-in", targeted combination setups, like opening a combination lock; is the experience you should be having while trading. Dial left, right, left, . . . click - the lock opens. | ||
| |
|
![]() |
| Thread Tools | |
| Display Modes | Help Others By Rating This Thread |
| |
| ∧ Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Easy Language | prabuc | Introduce Yourself | 2 | 08-12-2010 03:06 PM |
| MCFX Power Language(Easy Language) Coding Issue | fireworkz | Coding Forum | 4 | 02-28-2010 11:32 AM |
| Easy Language Help | JKLM | Automated Trading | 7 | 02-10-2009 11:17 PM |
| Easy Language - Question | ephi144 | Coding Forum | 1 | 01-25-2009 10:15 PM |
| Help with Easy Language | BrianA | Coding Forum | 29 | 01-13-2009 03:32 PM |