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.

dsalas

Automated System Based on Support and Resistance

Recommended Posts

Hello Guys, i use Market profile, volume profile and of course basic support and resistance on a chart for finding levels on the ES, FESX, CORN and Bund.....

 

I was thinking about building an automated trading system but i HAVE NO idea, really, zero idea....on how people do this....does anyone have a clue about how to do this...it will be very good to write a program that "does" things for me instead of me watching the screen at lunch hour ( i am in the UK)

 

thanks lots

 

Daniel

:)

Share this post


Link to post
Share on other sites
Hello Guys, i use Market profile, volume profile and of course basic support and resistance on a chart for finding levels on the ES, FESX, CORN and Bund.....

 

I was thinking about building an automated trading system but i HAVE NO idea, really, zero idea....on how people do this....does anyone have a clue about how to do this...it will be very good to write a program that "does" things for me instead of me watching the screen at lunch hour ( i am in the UK)

 

thanks lots

 

Daniel

:)

 

if you can imagine it,

visualize it,

quantify it,

articulate it,

you can program it.

Share this post


Link to post
Share on other sites
How can I do that tams?

 

You have already imagined it,

you have already visualized it,

 

now you have to

1. quantify it in logics, (ie IF this happens, THEN do this, ELSE do that...)

2. articulate it with written words, flow charts, diagrams, pseudo codes,

 

then we can program it.

Share this post


Link to post
Share on other sites

The key is risk management and that is dependent on many things, sometimes Time, sometimes Speed of Movement, sometimes Volume, sometimes Dollar amount, sometime Cycles of X Number of Bars, sometimes Seasonals, sometimes Percentages of Movement and sometimes Percentages of Account with regard to Leverage and/or Drawdown sometimes external events both known and unknown

 

The advice of IF THIS THEN THAT is good but you also need to know how to program position sizing according to market condition. Not all trades are equal in terms of risk some are scalps some are swings. Differentiate this and then you have an ALGO to take on the very best

 

You state support and resistance. Define them. for me in MP then support is defined as when the buyer is able to halt the selling and the buyer is able to overwhelm the seller and stabilize the market in terms of directional trade. and obviously vice versa. This could be as simple as saying if X bar rotates in the opposite direction and exceeds then.... However how would you deal with a bar that opens on a high and closes on a low followed by the next bar that opens on the low and closes on the high

 

Define your Timescale, Define your Basis for Order Entry and Order Exitt, Define Rsk Proposed,

write it out and apply the logic

Share this post


Link to post
Share on other sites
However how would you deal with a bar that opens on a high and closes on a low followed by the next bar that opens on the low and closes on the high

 

You define a range filter, this solves this issue. Volatility works better for this than % price or % retrace.

 

Or you invent AI & just tell it your logic & let it write the code for you :missy:

Share this post


Link to post
Share on other sites

Hi Dsalas,

 

Have you programmed on your charting platform before? If not then the first step is to learn how to code some simple indicators and get familiar with the programming language. Most charting applications have tutorials to help you. Then if you want to look at support/resistance levels you can code a simple indicator to plot the highest high and lowest low over different time frames, eg the last hour, since session start, last 15 minutes, etc. This can show you clusters of support/resistance levels and you then move to the next step, deciding what you want your system to do when price is near those levels.

 

Good luck in your trading.

Share this post


Link to post
Share on other sites

I think you shouldn't do it on your own, maybe the best way is gonna be to ask help from the professionals? Probably they will do it in a better way, and you will make your lunch time free from watching your screen!

Share this post


Link to post
Share on other sites
I think you shouldn't do it on your own, maybe the best way is gonna be to ask help from the professionals? Probably they will do it in a better way, and you will make your lunch time free from watching your screen!

 

Then you may as well just give them your money and have them be your fund manager. Doing it yourself is what makes it YOUR system, instead of theirs. Once you have your idea just steal some code and tweak it to fit your logic.

Share this post


Link to post
Share on other sites

Hi To all guys, Hi TraderWill. No I have not programmed anything before. I have no idea how to do this. I once attend a course for Visual Chart where they teach you to program based on MA, but it was really bad. I would like to know how to program an strategy, i mean, i dont even know what book to read or which seminar to attend. I use market profile and volume profiles as i titled the thread but that is all. Programming a strategy that could say something like "if the market is trending up and the value are high is touch buy at market with a stop of 2 points in the E-mini sp 500 and a profit target xxx" for example that is the issue i would have to look at levels in the market to determine where are the best entry points that is why i have no idea how to do this

 

thanks so much for the help guys

 

Daniel

Share this post


Link to post
Share on other sites
Hi To all guys, Hi TraderWill. No I have not programmed anything before. I have no idea how to do this. I once attend a course for Visual Chart where they teach you to program based on MA, but it was really bad. I would like to know how to program an strategy, i mean, i dont even know what book to read or which seminar to attend. I use market profile and volume profiles as i titled the thread but that is all. Programming a strategy that could say something like "if the market is trending up and the value are high is touch buy at market with a stop of 2 points in the E-mini sp 500 and a profit target xxx" for example that is the issue i would have to look at levels in the market to determine where are the best entry points that is why i have no idea how to do this

 

thanks so much for the help guys

 

Daniel

 

the mechanics of programming is easy... you just need to read the manual.

 

the challenge is not in the programming language,

but in how you define, in plain English, what needs to be programmed.

 

the computer is just a dumb machine.

it executes actions according to your instruction.

you just need to give it that "Instruction" for it to be smart.

Share this post


Link to post
Share on other sites

eg.

when you say a "pivot low"... a lot of people will naturally have a visual idea of what you are trying to convey:

a "low"... then a change in direction.

although different people would have different definition of what a "pivot low" is,

most will have a similar visual image.

 

but a computer has no imagination.

you have to tell the computer in no uncertain terms the characteristics and attributes of a pivot.

you have to define... step by step, line by line, what constitute a pivot.

and you have to do the same for all the logics you use in your trading.

Share this post


Link to post
Share on other sites
the mechanics of programming is easy... you just need to read the manual.

 

the challenge is not in the programming language,

but in how you define, in plain English, what needs to be programmed.

 

the computer is just a dumb machine.

it executes actions according to your instruction.

you just need to give it that "Instruction" for it to be smart.

 

As a non-programmer (education wise) with an IT background I would have to disagree. Even one of the big quant firms said recently "it's easier to teach a programmer to trade than a trader to program". they hire programmers with no trading background, then feed them logic trees.

 

Very few programming structures are written "for dummies" to be able to get a handle on. Only those written by a complete novice in their own process of trying to learn come close to being a teaching guide.

 

I agree that the logic is the key to success, but getting that into code can be a painful, if not impossible, task for some (which is when they come to Tams for help!)

Share this post


Link to post
Share on other sites

Daniel, if you've never programmed before then you have a challenge ahead of you. Look in your charting platform's help file and see if they teach some programming basics there, or maybe there's a link on their website with programming tutorials. Then just go through the tutorial lessons and sample code patiently. Try to program a simple indicator like a moving average, ramp up the difficulty by programming a moving average cross system, etc, just gradually build up the difficulty. A good tutorial will walk you through the process. After you're done with that you can look at the code for the indicators built into your charting platform. I know that you can look at source code for indicators on Tradestation, Metatrader and Ninjatrader, I don't know about any other platforms, no experience with them.

 

It won't be a quick process because you'll be learning a new language. Only after you've learned it can you start coding your own system. Unfortunately there's no shortcut.

 

Now if you have a friend who knows how to program you could get together with him, share your strategy with him so that he does the coding and as long as you know that you can trust him then you two will be the only people trading it.

 

Good luck in your trading.

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.