Welcome to the Traders Laboratory Forums.
Coding Forum Collaborate, receive help, or discuss coding related issues.

Reply
Old 07-26-2011, 06:11 PM   #1
Reg

Join Date: Aug 2009
Location: Jacksonville
Posts: 1
Ignore this user

Thanks: 0
Thanked 0 Times in 0 Posts

Help with TS Easy Language

Dear Easy Language People:

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
Reg is offline  
Reply With Quote
Old 07-26-2011, 07:12 PM   #2

Tams's Avatar

Join Date: Sep 2008
Location: Geelong
Posts: 3,779
Ignore this user

Thanks: 2,084
Thanked 1,474 Times in 912 Posts

Re: Help with TS Easy Language

please use the code tag when posting codes.
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
Tams is offline  
Reply With Quote
Old 07-26-2011, 07:16 PM   #3

Tams's Avatar

Join Date: Sep 2008
Location: Geelong
Posts: 3,779
Ignore this user

Thanks: 2,084
Thanked 1,474 Times in 912 Posts

Re: Help with TS Easy Language

Quote:
Originally Posted by Reg »
...
I have tried to come up with the easy language program for this and have the following, but it will not verify.
...
Can you help me fix it???

Thanks
I would suggest you to go through the examples in the manual first.

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
Tams is offline  
Reply With Quote
Old 07-26-2011, 11:02 PM   #4

Tradewinds's Avatar

Join Date: Nov 2008
Location: Northeast U.S.
Posts: 891
Ignore this user

Thanks: 373
Thanked 231 Times in 164 Posts
Blog Entries: 6

Re: Help with TS Easy Language

Remove "Variable:"

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.
Tradewinds is offline  
Reply With Quote

Reply

Thread Tools
Display Modes Help Others By Rating This Thread
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

All times are GMT -4. The time now is 10:51 AM.
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
CS to VB integration by DeskLancer
©2006-2011 Traders Laboratory, All Rights Reserved.