Jump to content

Welcome to the new Traders Laboratory! Please bear with us as we finish the migration over the next few days. If you find any issues, want to leave feedback, get in touch with us, or offer suggestions please post to the Support forum here.

  • Welcome Guests

    Welcome. You are currently viewing the forum as a guest which does not give you access to all the great features at Traders Laboratory such as interacting with members, access to all forums, downloading attachments, and eligibility to win free giveaways. Registration is fast, simple and absolutely free. Create a FREE Traders Laboratory account here.

trbates

List of Easy Language Reserved Words

Recommended Posts

I'm not sure which forum this should be in ... so I figured I would start here. I was wondering if anyone had a list of reserved words (for example: Market, Close, If, Begin, BuyToCover, etc.) that are used in TradeStation's Easy Language? I've been searching, and can really only come up with the books offered by tradestation, or tutorials on Easy Language. I'm really just looking for a reference chart ... and if it has brief explanations that would just be the icing on the cake :)

 

Thanks

 

Travis

Share this post


Link to post
Share on other sites

Why don't you just click on the "help" button then go to Tradestation Help, where it gives you the user guide and a full comprehensive explanation on ALL reserved words.

 

Hope this helps

 

Blu-Ray

Share this post


Link to post
Share on other sites
I'm not sure which forum this should be in ... so I figured I would start here. I was wondering if anyone had a list of reserved words (for example: Market, Close, If, Begin, BuyToCover, etc.) that are used in TradeStation's Easy Language? I've been searching, and can really only come up with the books offered by tradestation, or tutorials on Easy Language. I'm really just looking for a reference chart ... and if it has brief explanations that would just be the icing on the cake :)

 

Thanks

 

Travis

You can download an ebook from the Tradestation site giving you all the reserved words and functions

 

https://www.tradestation.com/support/books/default.aspx#easylanguage

 

On the same page you can also download for free an ebook on easylanguage essentials.

 

The other materials and hard copies need to be ordered

 

Charlton

Share this post


Link to post
Share on other sites

I'm still having problems finding the reserved word for the Current Price.

 

I am trying to have a position enter/exit if current price is less than or greater than (depending on the position) a variable.

 

Any help would be greatly appreciated

 

Thanks

 

Travis

Share this post


Link to post
Share on other sites
Guest forsearch

Current price is simply the reserved word....

 

Close

 

-fs

Share this post


Link to post
Share on other sites

I've got yet another question about EasyLanguage I hope you all can help me with ...

 

Is there a way to step through the program (strategy, indicator, etc) to test your logic? I am currently not having any luck with having trades trigger ... so I remembered long, long ago programming in other languages the compiler allowed you to step through the program to find the If/Then , or other logical statement that wasn't working as intended. Is this possible? or anything that would accomplish the same thing?

 

Thanks

Share this post


Link to post
Share on other sites
hi ;

can anybody tell me about how to download free book for easy language

I am getting lot problem with the syntax of the easylanguage

 

Try reading this thread. Your answer is in the 3rd post.

Share this post


Link to post
Share on other sites
I'm having a hard time finding how to plot the current price? Its probably as dumb a question as the first ... but I would appreciate any help :)

 

Did you get the answer to this. I am having the same problem.

If I use Price it does not give the current price.

 

BTW, anyone else having problems using the Forum Search ?

 

Malcolm

Share this post


Link to post
Share on other sites
Did you get the answer to this. I am having the same problem.

If I use Price it does not give the current price.

 

BTW, anyone else having problems using the Forum Search ?

 

Malcolm

 

The answer was given in post 7 of this thread.

 

Anway here is the answer with a little more explanation

 

 

 

Used to plot values (numeric, boolean or string) in a price chart or in an grid-based analysis window. Plotted values can be standard bar values (such as Close or Volume), inputs, or variable values resulting from a calculation or an expression.

 

PlotN(Expression[,"<PlotName>"[,ForeColor[,Default[,Width]]]]);

 

N is a number between 1 and 99, representing one of the ninety-nine available plots. Expression is the value to be plotted and <PlotName> is the name of the plot. ForeColor is an Easy Language color used for the plot (also referred to as PlotColor), Default (reserved for future use), and Width is a numeric value representing the width of the plot. The parameters <PlotName>, ForeColor, Default, and Width are optional.

 

So in summary to plot the current price would be something like:

 

Plot1(Close, "Curr", Black);

 

Charlton

Share this post


Link to post
Share on other sites

Perhaps I should have given more explanation.

I am aware of the Open, High, Low and Close prices and their use, but what I am after is the current Tick Price. If I run an Indicator on a 5 minute chart, the Indicator executes a number of time for each bar (as seen using FileAppend to log the executions of the indicator). This seems to tie in with being able to see the bar update as prices come in, Note: the current price shown on the right hand side of the chart.

 

Any thoughts?

Share this post


Link to post
Share on other sites
Perhaps I should have given more explanation.

I am aware of the Open, High, Low and Close prices and their use, but what I am after is the current Tick Price. If I run an Indicator on a 5 minute chart, the Indicator executes a number of time for each bar (as seen using FileAppend to log the executions of the indicator). This seems to tie in with being able to see the bar update as prices come in, Note: the current price shown on the right hand side of the chart.

 

Any thoughts?

 

If you watch a 1 min bar you will notice that the closing line will move up and down and show the current price during the creation of the bar.

 

The same happens if you plot an indicator provided that you have formatted the indicator on the general tab as "Update intrabar (tick by tick). So in this case the indicator would be acted upon on every tick and the close at the time would be the tick price.

 

Obviously if you are plotting a 1 min or above bar then these tick prices become "absorbed" into the 1 min bar such that you can only see 4 of them once the bar is complete (O, H, L, C). The only way of recording what they were during the formation of the bar would be to use the print to the easylanguage output bar.

 

The problem is that the date/time that can be included in the print is not sufficiently precise, although you could use the current computer time (COMPUTERDATETIME) to get more precise.

 

Within an indicator easylanguage code you can set up logic that is interval dependent (see bar type below) and you can also force the indicator to act only on certain ticks (see bar status below). Thus you can decide whether to print out price on a tick within a bar or just on completion of the bar.

 

Of course the other possibility is to plot a tick chart, in which case you will get the tick prices,

 

Having said all this I am not sure what the question is. What are you actually trying to achieve ?

 

Charlton

 

 

 

Returns a number indicating the type of bar (chart type) that an analysis technique or strategy is applied to.

 

This chart type is set by the user in the Select Interval section of the Settings tab within the Format Symbol dialog for a chart.

 

Remarks

The number returned is based on the interval selected. BarType will return:

 

0 = TickBar

1 = Intraday

2 = Daily

3 = Weekly

4 = Monthly

5 = Point & Figure

6 = (reserved)

7 = (reserved)

8 = Kagi

9 = Kase

10 = Line Break

11 = Momentum

12 = Range

13 = Renko

 

Refer to Chart Type Reserved Word Values for examples of values returned for various chart types.

 

Examples

BarType returns 0 when applied to a Tick chart.

 

BarType returns 2 when applied to a Daily chart.

 

Additional Example

To assure that a statement is executed only on a daily chart we can write:

 

If BarType = 2 then Sell next bar at market;

 

This reserved word is used to determine whether the current tick is the opening or closing tick of a bar, or whether it is a tick ’inside the bar.’

 

BarStatus(DataNum)

 

DataNum is a numeric expression representing the data stream that is being evaluated. 1 refers to Data1, 2 to Data2 and so on. DataNum can be between 1 and 50, inclusive.

 

Notes:

This reserved word will return one of four possible values:

 

2 = the closing tick of a bar

1 = a tick within a bar

0 = the opening tick of a bar (relevant only for strategies using Open Next Bar order actions)

-1 = an error occurred while executing the reserved word

 

When used with multi-data charts the data series referenced must be applied to the chart. For example, to use BarStatus (2), a second data series must be applied to the chart.

 

Example

To perform an operation at the closing tick on the last bar you could write:

 

if LastBarOnChart and BarStatus( 1 ) = 2 then

 

{Your Operation Here} ;

 

Share this post


Link to post
Share on other sites
Perhaps I should have given more explanation.

I am aware of the Open, High, Low and Close prices and their use, but what I am after is the current Tick Price. If I run an Indicator on a 5 minute chart, the Indicator executes a number of time for each bar (as seen using FileAppend to log the executions of the indicator). This seems to tie in with being able to see the bar update as prices come in, Note: the current price shown on the right hand side of the chart.

 

Any thoughts?

 

Have you tried plotting CLOSE? What happened?

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.


  • Topics

  • Posts

    • Date: 25th April 2024. Investors Monitor a Potential Japanese Intervention, and upcoming Tech Earnings. Meta stocks top earnings expectations, but revenue guidance for the next 6 months triggers significant selloff. Meta stocks decline 15.00% and the Magnificent Seven also trade lower. Japanese Authorities are on watch and most market experts predict the Japanese Federal Government will intervene once again. The Japanese Yen is the day’s worst performing currency while the Australian Dollar continues to top the charts. The US Dollar trades 0.10% lower, but this afternoon’s performance is likely to be dependent on the US GDP. USA100 – Meta Stocks Fall 15% On the Next 6-Months Guidance The NASDAQ has declined 1.51% over the past 24 hours, unable to maintain momentum from Monday and Tuesday. Technical analysts advise the decline is partially simply a break in the bullish momentum and the asset continues to follow a bullish correction pattern. However, if the decline continues throughout the day, the retracement scenario becomes a lesser possibility. In terms of indications and technical analysis, most oscillators, and momentum-based signals point to a downward price movement. The USA100 trades below the 75-Bar EMA, below the VWAP and the RSI hovers above 40.00. All these factors point towards a bearish trend. The bearish signals are also likely to strengthen if the price declines below $17,295.11. The stock which is experiencing considerably large volatility is Meta which has fallen more than 15.00%. The past quarter’s earnings beat expectations and according to economists, remain stable and strong. Earnings Per Share beat expectations by 8.10% and revenue was as expected. However, company expenses significantly rose in the past quarter and the guidance for the second half of the year is lower than previous expectations. These two factors have caused investors to consider selling their shares and cashing in their profits. Meta’s decline is one of the main causes for the USA100’s bearish trend. CFRA Senior Analyst, Angelo Zino, advises the selloff may be a slight over reaction based on earnings data. If Meta stocks rise again, investors can start to evaluate a possible upward correction. However, a concern for investors is that more and more companies are indicating caution for the second half of the year. The price movements will largely now depend on Microsoft and Alphabet earnings tonight after market close. Microsoft is the most influential stock for the NASDAQ and Alphabet is the third. The two make up 14.25% of the overall index. If the two companies also witness their stocks decline after the earnings reports, the USA100 may struggle to gain upward momentum. EURJPY – Will Japan Intervene Again? In the currency market, the Japanese Yen remains within the spotlight as investors believe the Japanese Federal Government is likely to again intervene. The Federal Government has previously intervened in the past 12 months which caused a sharp rise in the Yen before again declining. The government opted for this option in an attempt to hinder a further decline. Volatility within the Japanese Yen will also depend on today’s US GDP reading and tomorrow’s Core PCE Price Index. However, investors will more importantly pay close attention to the Bank of Japan’s monetary policy. Investors will be keen to see if the central bank believes it is appropriate to again hike in 2024 as well as comment regarding inflation and the economy. In terms of technical analysis, breakout levels can be considered as areas where the exchange rate may retrace or correct. Breakout levels can be seen at 166.656 and 166.333. However, the only indicators pointing to a decline are the RSI and similar oscillators which advise the price is at risk of being “overbought”. Always trade with strict risk management. Your capital is the single most important aspect of your trading business. Please note that times displayed based on local time zone and are from time of writing this report. Click HERE to access the full HFM Economic calendar. Want to learn to trade and analyse the markets? Join our webinars and get analysis and trading ideas combined with better understanding on how markets work. Click HERE to register for FREE! Click HERE to READ more Market news. Michalis Efthymiou Market Analyst HFMarkets Disclaimer: This material is provided as a general marketing communication for information purposes only and does not constitute an independent investment research. Nothing in this communication contains, or should be considered as containing, an investment advice or an investment recommendation or a solicitation for the purpose of buying or selling of any financial instrument. All information provided is gathered from reputable sources and any information containing an indication of past performance is not a guarantee or reliable indicator of future performance. Users acknowledge that any investment in FX and CFDs products is characterized by a certain degree of uncertainty and that any investment of this nature involves a high level of risk for which the users are solely responsible and liable. We assume no liability for any loss arising from any investment made based on the information provided in this communication. This communication must not be reproduced or further distributed without our prior written permission.
    • $ALVR AlloVir stock bottom breakout watch, huge upside gap, https://stockconsultant.com/?ALVR
    • $DIS Disney stock attempting to move higher off the 112.79 triple support area, https://stockconsultant.com/?DIS
    • $ADCT Adc Therapeutics stock flat top breakout watch above 5.31, https://stockconsultant.com/?ADCT
    • $CXAI CXApp stock local support and resistance areas at 2.78, 3.52 and 5.19, https://stockconsultant.com/?CXAI
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.