free tradingsystems

Viewing 15 posts - 1 through 15 (of 18 total)
  • #223901

    this are my investmenttools …free to use

    4 users thanked author for this post.
    #223905

    use it in day chart for dji or sp500

    #223928

    Thanks for sharing your code nepu77 🙂

     

    #228709

    I try a simple renko-chart system. it looks very good.

    i done it on tradingview. I used ATR 1

    I am not so sure about the realistic of it … but anyway … llooks good

     

    /@version=4
    strategy(“New Monster”, overlay=true)
    // Naheste 100er Zahl für Long- und Short-Positionen berechnen
    a =  (close[1]>open[1]) and  (close>open)
    b=   (close[1]<open[1])  and (close<open)
    c = (close<open)
    d = (close>open)
    if (a)
        strategy.entry(“Long”, strategy.long)
    if (b)
        strategy.entry(“Short”, strategy.short)
    if (c)
        strategy.close(“Long”)
    if (d)
        strategy.close(“Short”)
    #228901

    the renko is very interessting for me.

    because it allows you to trade something special. i tryed it also on a normal chart, but the resault was not so good.

     

    the idea was from the elliottwaves , to trade the half of a range buy useing a stop entry. what i thought it should be the only 2:1 trade.

    and in my theorie it works .. but the normal chart is to much chaos. so i tried the renko. is very interessting

     

    this is also for tradingview.

     

    //@version=4
    strategy(“Monster”, overlay=true)
    startDatum = timestamp(“2022-12-01T00:00:00Z”) // 1. Januar 2021
    var float a = na
    var float b = na
    // Überprüfen der Bedingungen
    if (close[1] > open[1] and close[0] < open[0])
        a := high[1]
    if (close[1] < open[1] and close[0] > open[0])
        b := low[1]
    c = (a-b)/2
    if (((close[1] > open[1] and close[0] < open[0])) and (time >= startDatum))
        strategy.entry(“Short”, strategy.short, stop = a-c )
    if (((close[1] < open[1] and close[0] > open[0])) and (time >= startDatum))
        strategy.entry(“Long”, strategy.long, stop = b+c)
    plot(series=na(a) ? na : a-c, color=color.red, linewidth=2, title=”Short Stop”)
    plot(series=na(b) ? na : b+c, color=color.green, linewidth=2, title=”Long Stop”)
    #229159
    works on every market on every timeefram – use the renko chart
    //@version=4
    strategy(“Monster”, overlay=true)
    var float a = na
    var float b = na
    // Überprüfen der Bedingungen
    if (((close[1] > open[1] and close[0] < open[0])))
        a := high[1]
    if (((close[1] < open[1] and close[0] > open[0])))
        b := low[1]
    c = (a-b)/2
    if (close<open)
        strategy.entry(“Short”, strategy.short, stop = b)
    if (close>open)
        strategy.entry(“Long”, strategy.long, stop = a)
    plot(series=na(a) ? na : b, color=color.red, linewidth=2, title=”Long Stop”)
    plot(series=na(b) ? na : a, color=color.green, linewidth=2, title=”Short Stop”)
    #229168

    iF YOU WANT TO TRADE REAL THE ES FUTURE – USE THE CUM.DELTA

     

    i think it is the only thing what works. cum. delta is the differenz between buy-and sell orders of marketorders. marketorders controll the market.

    i use the yucluster indicator for metatrader. and ampfutures as data. all free…

    when you use the cumdelta – above 0 long — down 0 short. i think it is the only thing what works

    #230127

    there are ranges every day. Even every few hours there are ranges that are left on 1 page. The hottest trades come at the open from 3:30 p.m. to 4:00 p.m.

    the market makes a small range with a poc. From the POC the explosion comes in 1 direction. With this you have to go along the edges (value area low, high). A 3:1 is possible almost every few hours.

    the cum.delta. shows how the market is set up right now.
    a mountain of volume – shows there is resistance here. You have to look at it in real time and decide.

    motto means – move away from the poc to trade the explosion… don’t be greedy you often only get a 1:1 before 1500 o’clock
    Keeping up with the trend is the motto

    #230129

    the poc is a wall …

    #230132

    if you want to go against the trend … wait for a new poc.

    #230134

    The volume profile is the only thing that works exactly. why… because everyone uses it – especially broker funds etc. and there are only 3 things you can trade

    #230135

    i have to say sorry, but prorealtime is for gaming .. you miss a lot of informations.

    to trade above 5 min chat is also gaming

    #230136

    What do we miss?

    #230156

    when you go long  ,you wait that a high is breaking … you go short when a low is breaking …

    the middel give you a lot of informations … when you use the cum delta or maybe the orderbook.

    when you trade bevor the us market open, then you deside to go long , but they stop buying !!! why … they not must sell .. they not must buy because the ranges are smal in this time.

    my best setups are between 1530 and 1800 o clock.

    they are afraid it is getting to expensive the trade. and where they are going out of the trade you can see it in the volumeprofile .. ( but not 1 day ago .realtime !!! this is important realtime

    #230157

    use ninjatrader with mzpack (free version) and a cum delta. you will be able to trade much more …

    all this informations are important for me .. cum delta … long or short to take 10 points with me in the morning.

    when the us market open … then you let run the position … but not to much .. when they are forming a new poc – it is over

Viewing 15 posts - 1 through 15 (of 18 total)

Create your free account now and post your request to benefit from the help of the community
Register or Login