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

    • I'm pretty sure that a Russian resident would say that recessions are real today. Their prime interest rate is 21%, their corporate military contractors are threatening to file bankruptcy, and sticks of butter are kept under lock and key in their grocery stores because shoplifters are stealing it in bulk so they can resell it on the black market. A downturn is cyclical until it turns into a collapse. I really don't think anyone will be buying-into this mess.😬
    • Well said. This principle is highly analogous to trading. Any human can easily click buy or sell when they "feel" that price is about to go up or down. The problem with feeling, commonly referred to as "instinctive" trading, is that it cannot be quantified. And because it cannot be quantified, it cannot be empirically tested. Instinctive trading has the lowest barrier to entry and therefore returns the lowest reward. As this is true for most things in life, this comes as no surprise. Unfortunately, the lowest barrier to entry is attractive to new traders for obvious reasons. This actually applied to me decades ago.🤭   It's only human nature to seek the highest amount of reward in exchange for the lowest amount of work. In fact, I often say that there is massive gray area between efficiency and laziness. Fortunately, losing for a living inspired me to investigate the work of Wall Street quants who refer to us as "fishfood" or "cannonfodder." Although I knew that we as retail traders cannot exploit execution rebates or queues like quants do, I learned that we can engage in automated scalp, swing, and trend trading. The thermonuclear caveat here, is that I had no idea how to write code (or program) trading algorithms. So I gravitated toward interface-based algorithm builders that required no coding knowledge (see human nature, aforementioned). In retrospect, I should never have traded code written by builder software because it's buggy and inefficient. However, my paid subscription to the builder software allowed me to view the underlying source code of the generated trading algo--which was written in MQL language. Due to a lack of customization in the builder software, I inevitably found myself editing the code. This led me to coding research which, in turn, led me to abandoning the builder software and coding custom algo's from scratch. Fast forward to the present, I can now code several trading strategies per day across 2 different platforms. Considering how inefficient manual backtesting is, coding is a huge advantage. When a new trading concept hits me, I can write the algo, backtest it, and optimize it within an hour or so--across multiple exchanges and symbols, and cycle through hundreds of different settings for each input. And then I get pages upon pages of performance metrics with the best settings pre-highlighted. Having said all of this, I am by no means an advanced programmer. IMHO, advanced programmers write API gateways, construct their own custom trading platforms, use high end computers with field programmable gateway array chips, and set up shop in close proximity to the exchanges. In any event, a considerable amount of work is required just to get toward the top of the "fishfood"/"cannonfodder" pool. Another advantage of coding is that it forces me to write trade entry and exit conditions (triggers) in black & white, thereby causing me to think microscopically about my precise trade trigger conditions. For example, I have to decide whether the algo should track the slope, angle, and level of each bar price and indicator to be used. Typing a hard number like 50 degrees of angle into code is a lot different than merely looking at a chart myself and saying, that's close enough.  Code doesn't acknowledge "maybe" nor "feelings." Either the math (code) works (is profitable) or doesn't work (is a loser). It doesn't get angry, sad, nor overly optimistic. And it can trade virtually 24 hours per day, 5 days per week. If you learn to code, you'll eventually reach a point where coding an algo that trades as you intended provides its own sense of accomplishment. Soon after, making money in the market merely becomes a side effect of your new job--coding. This is how I compete, at least for now, in this wide world of trading. I highly recommend it.  
    • VRA Vera Bradley stock watch, pull back to 5.08 support area at https://stockconsultant.com/?VRA
    • MU Micron stock watch, pull back to 102.83 gap support area with high trade quality at https://stockconsultant.com/?MU
    • ACLX Arcellx stock watch, trending at 84.6 support area with bullish indicators at https://stockconsultant.com/?ACLX
×
×
  • Create New...

Important Information

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