free tradingsystems
Forums › ProRealTime English forum › General trading discussions › free tradingsystems
- This topic has 17 replies, 4 voices, and was last updated 7 months ago by nepu77.
-
-
11/19/2023 at 9:08 AM #223901
this are my investmenttools …free to use
4 users thanked author for this post.
11/19/2023 at 9:09 AM #22390511/19/2023 at 5:18 PM #223928Thanks for sharing your code nepu77 🙂
02/25/2024 at 12:46 PM #228709I 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=4strategy(“New Monster”, overlay=true)// Naheste 100er Zahl für Long- und Short-Positionen berechnena = (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”)02/27/2024 at 10:38 PM #228901the 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=4strategy(“Monster”, overlay=true)startDatum = timestamp(“2022-12-01T00:00:00Z”) // 1. Januar 2021var float a = navar float b = na// Überprüfen der Bedingungenif (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)/2if (((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”)03/03/2024 at 7:25 PM #229159works on every market on every timeefram – use the renko chart//@version=4strategy(“Monster”, overlay=true)var float a = navar float b = na// Überprüfen der Bedingungenif (((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)/2if (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”)03/04/2024 at 10:15 AM #229168iF 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
03/20/2024 at 4:55 PM #230127there 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 motto03/20/2024 at 4:55 PM #23012903/20/2024 at 5:01 PM #23013203/20/2024 at 5:08 PM #23013403/20/2024 at 5:15 PM #23013503/20/2024 at 5:16 PM #23013603/20/2024 at 6:55 PM #230156when 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
03/20/2024 at 7:00 PM #230157use 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
-
AuthorPosts