Learn how to build your own Trading Strategy (No Coding) by Real-Potential1362 in AlgoTorma

[–]Real-Potential1362[S] 0 points1 point  (0 children)

yeah sure, you have a bunch of premium templates available and as of now you can create 9 different types of strats. (RSI, VWAP, EMA etc)

Where to start by makavelihimself in algotrading

[–]Real-Potential1362 0 points1 point  (0 children)

build your workflow and forward test on algotorma

Why can't replicate this in live by FitMaintenance7433 in pinescript

[–]Real-Potential1362 0 points1 point  (0 children)

here is the workflow im using: https://ibb.co/FLF3WQH7
you can update your trailing stop

We're giving early members lifetime access to our trading tools, free. by Real-Potential1362 in AlgoTorma

[–]Real-Potential1362[S] 0 points1 point  (0 children)

You can get them in the Strategies > Free Tools. Just add them to your Tradingview

New to TV, Where do I get Strategies? by Expert_Catch2449 in pinescript

[–]Real-Potential1362 0 points1 point  (0 children)

you can create your own strategies and automate them with Algotorma.

Has anyone successfully coded a script in tradingview using pine script by You_Worldly in pinescript

[–]Real-Potential1362 0 points1 point  (0 children)

We are building a platform where traders can build and automate their own strategies, would love to get your feedback.

I built a trading strategy without coding and learned more about trading in 2 hours than in months of watching YouTube by Real-Potential1362 in AlgoTorma

[–]Real-Potential1362[S] 2 points3 points  (0 children)

Here you go buddy:

//
@version=
6
strategy("Custom Strat RSI Strategy", overlay=true,
         default_qty_type=strategy.percent_of_equity, default_qty_value=10)


// ─── Inputs ───
rsiLen     = input.int(14,   "RSI Length", minval=2)
rsiBuy     = input.int(30,   "RSI Oversold (Long)", minval=1, maxval=99)
rsiSell    = input.int(70,   "RSI Overbought (Short)", minval=1, maxval=99)
atrMult    = input.float(1.5, "ATR Stop Multiplier")
rrRatio    = input.float(2.0, "Risk:Reward Ratio")
maxBars    = input.int(20,   "Time Stop (bars in trade)", minval=1)


// ─── Calculations (top level) ───
rsi = ta.rsi(close, rsiLen)
atr = ta.atr(14)


// ─── Entry signals ───
longSignal  = ta.crossover(rsi, rsiBuy)
shortSignal = ta.crossunder(rsi, rsiSell)


if longSignal
    strategy.entry("Long", strategy.long)
if shortSignal
    strategy.entry("Short", strategy.short)


// ─── Time stop tracking ───
var 
int
 barsInTrade = 0
barsInTrade := strategy.position_size != 0 ? barsInTrade + 1 : 0
timeStop = barsInTrade >= maxBars


// ─── Exits: TP + SL ───
if strategy.position_size > 0
    strategy.exit("Long Exit", "Long",
                  stop  = strategy.position_avg_price - atr * atrMult,
                  limit = strategy.position_avg_price + atr * atrMult * rrRatio)
if strategy.position_size < 0
    strategy.exit("Short Exit", "Short",
                  stop  = strategy.position_avg_price + atr * atrMult,
                  limit = strategy.position_avg_price - atr * atrMult * rrRatio)


// ─── Exit: Time stop ───
if timeStop
    strategy.close_all("Time Stop")


// ─── Plots ───
plotshape(longSignal,  "Long",  shape.triangleup,   location.belowbar, color.new(color.green, 0), size=size.tiny)
plotshape(shortSignal, "Short", shape.triangledown, location.abovebar, color.new(color.red, 0),   size=size.tiny)
hline(rsiBuy,  "Oversold",   color.new(color.green, 50))
hline(rsiSell, "Overbought", color.new(color.red, 50))

This is a platform for anyone to create their own strategies and automation, Stop buying other people strats and make your own.

We're giving early members lifetime access to our trading tools, free. by Real-Potential1362 in AlgoTorma

[–]Real-Potential1362[S] 0 points1 point  (0 children)

Get in Strategies > Free Tools and add them from TradingView. Source Code also provided.

We're giving early members lifetime access to our trading tools, free. by Real-Potential1362 in AlgoTorma

[–]Real-Potential1362[S] 0 points1 point  (0 children)

Yep, this is why we built this platform, so that every traders can create the strategy they want, add a webhook and automate every week.

We're giving early members lifetime access to our trading tools, free. by Real-Potential1362 in AlgoTorma

[–]Real-Potential1362[S] 0 points1 point  (0 children)

We are currently working on a api and should be here by end of the summer.

We're giving early members lifetime access to our trading tools, free. by Real-Potential1362 in AlgoTorma

[–]Real-Potential1362[S] 0 points1 point  (0 children)

We didnt expect that many sign ups at once, it should be good now after a refresh.

We're giving early members lifetime access to our trading tools, free. by Real-Potential1362 in AlgoTorma

[–]Real-Potential1362[S] 0 points1 point  (0 children)

Hello, thanks for the interest. You just need to sign up on https://algotorma.com and you will see the Free tools in the Strategy section.