free tradingsystems

Viewing 15 posts - 1 through 15 (of 18 total)
  • Author
    Posts
  • #223901 quote
    nepu77nepu77
    Participant
    Average

    this are my investmenttools …free to use

    GraHal, KumoNoJuzza, robertogozzi and PLermite thanked this post
    DAYTRADING-MONSTER.itf Investing.itf WAVE.itf
    #223905 quote
    nepu77nepu77
    Participant
    Average

    use it in day chart for dji or sp500

    #223928 quote
    robertogozzirobertogozzi
    Moderator
    Legend

    Thanks for sharing your code nepu77 🙂

    #228709 quote
    nepu77nepu77
    Participant
    Average

    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”)
    1.jpg 1.jpg
    #228901 quote
    nepu77nepu77
    Participant
    Average

    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”)
    11.jpg 11.jpg
    #229159 quote
    nepu77nepu77
    Participant
    Average
    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”)
    1.jpg 1.jpg
    #229168 quote
    nepu77nepu77
    Participant
    Average

    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 quote
    nepu77nepu77
    Participant
    Average

    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

    213.jpg 213.jpg
    #230129 quote
    nepu77nepu77
    Participant
    Average

    the poc is a wall …

    #230132 quote
    nepu77nepu77
    Participant
    Average

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

    #230134 quote
    nepu77nepu77
    Participant
    Average

    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 quote
    nepu77nepu77
    Participant
    Average

    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 quote
    SnorreDKSnorreDK
    Participant
    Junior

    What do we miss?

    #230156 quote
    nepu77nepu77
    Participant
    Average

    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 quote
    nepu77nepu77
    Participant
    Average

    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)
  • You must be logged in to reply to this topic.
ProRealAI ProRealAI New

Stuck on this ProBuilder code?

Describe what this topic is trying to build, in plain English, and ProRealAI writes the ProRealTime™ indicator, screener or system for you.

Available in 7 languages
Try ProRealAI

free tradingsystems


General Trading: Market Analysis & Manual Trading

New Reply
Author
author-avatar
nepu77 @nepu77 Participant
Summary

This topic contains 17 replies,
has 4 voices, and was last updated by nepu77nepu77
2 years, 5 months ago.

Topic Details
Forum: General Trading: Market Analysis & Manual Trading
Language: English
Started: 11/19/2023
Status: Active
Attachments: 9 files
ProRealCode ProRealCode
Loading...