Jump to content

โคด๏ธ-Paid Ad- Check advertising disclaimer here. Add your banner here.๐Ÿ”ฅ

All Activity

This stream auto-updates

  1. Past hour
  2. It has an Instagram account: https://www.instagram.com/nasdaqtraderai?igsh=a2F0Zm84NWVmaWRy The settings are already pre-defined for each asset.... The timeframe indicated by the supplier is 3 minutes.
  3. It has an Instagram account: https://www.instagram.com/nasdaqtraderai?igsh=a2F0Zm84NWVmaWRy The settings are already pre-defined for each asset.... @kimsam
  4. Anyone notice that with the MultiX the last column, T2 is always Green? Or is it just me?
  5. Today
  6. Can anyone please re-upload redux's dll solution? Link is not working.
  7. @apmoo @kimsam @redux @N9T First of all thank you for all your contributions here, for making available indicators and strategies that more often than not reveal themself not be as effective as they are presented and thay way you help us save us a lot of money. In regard this indicator I just wanted to ask if you think you can educate it. I would like to know if I can still have that hope. If you can I will wait if not I will move on and won't insist on this. Thank you
  8. https://ibb.co/WN2SZwHp
  9. site ? sourse ? templates?
  10. Hi everyone, could someone please re-upload the template and share where the file needs to go? Thanks a lot in advance!
  11. Welcome to Indo-Investasi.com. Please feel free to browse around and get to know the others. If you have any questions please don't hesitate to ask.

  12. Welcome to Indo-Investasi.com. Please feel free to browse around and get to know the others. If you have any questions please don't hesitate to ask.

  13. Thanks a lot. Appreciate it.
  14. Welcome to Indo-Investasi.com. Please feel free to browse around and get to know the others. If you have any questions please don't hesitate to ask.

  15. @N9T @apmoo Thanks ๐Ÿ™
  16. https://workupload.com/file/CgN8LtTJN2D
  17. link doesn't work anymore. Can anyone please reupload. Thank you
  18. @hammyy2k You are amazing brother! Thank you ๐Ÿ™‚
  19. English only last warning
  20. Here is 3.18.31 EDU included MZpack.NT8 3.18.31.rar
  21. https://workupload.com/file/FVtatefVddc These robots perform well; if you could help by educating them, I believe they have an expiration date... Also, if possible, could you send the open-source code? Because that way I can help and adapt it for other assets... Thanks @redux@kimsam@nt9
  22. same as the Range bot from Ninja AI/ 5min HA candles, just plot it as it is and test it out ( MNQ or NQ 1 contract). thanks //@version=6 strategy("Range Swing Bias Strategy (0-100 Scale) [NinjaBotAI]", overlay=true, max_lines_count=500, max_labels_count=500, initial_capital=10000, default_qty_type=strategy.percent_of_equity, default_qty_value=10) // โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ // Inputs // โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ swingPeriod = input.int(15, "Swing Period", minval=1) swingMultiplier = input.float(4, "Swing Multiplier", step=0.1) lookback = input.int(50, "Normalization Lookback") // for 0-100 scaling showSwingLine = input.bool(true, "Show Swing Line") colorBg = input.bool(false, "Color Background by Bias") takeProfitPerc = input.float(2.0, "Take Profit (%)", step=0.1) stopLossPerc = input.float(1.0, "Stop Loss (%)", step=0.1) // โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ // Double-smoothed price change // โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ priceChange = math.abs(close - close[1]) fastEMA = ta.ema(priceChange, swingPeriod) slowPeriod = swingPeriod * 2 - 1 slowEMA = ta.ema(fastEMA, slowPeriod) // โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ // Swing line calculation // โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ bandwidth = slowEMA * swingMultiplier var float swingLine = na swingLine := na(swingLine[1]) ? close : close - bandwidth > swingLine[1] ? close - bandwidth : close + bandwidth < swingLine[1] ? close + bandwidth : swingLine[1] // โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ // Directional bias (slope-based) // โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ var int bias = 0 s = swingLine bias := s > s[1] ? 1 : s < s[1] ? -1 : bias[1] // โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ // Normalize swing line to 0-100 scale // โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ minSwing = ta.lowest(swingLine, lookback) maxSwing = ta.highest(swingLine, lookback) swingScaled = maxSwing != minSwing ? 100 * (swingLine - minSwing) / (maxSwing - minSwing) : 50 // โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ // Plotting // โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ plot(showSwingLine ? swingScaled : na, "Swing Line (0-100)", color=bias == 1 ? color.lime : color.red, linewidth=2) hline(50, "Midline", color=color.gray, linestyle=hline.style_dotted) bgcolor(colorBg ? (bias == 1 ? color.new(color.green, 85) : color.new(color.red, 85)) : na) plotchar(bias == 1, title="Bullish Bias", char="โ–ฒ", location=location.bottom, color=color.lime, size=size.tiny) plotchar(bias == -1, title="Bearish Bias", char="โ–ผ", location=location.top, color=color.red, size=size.tiny) // โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ // Strategy Logic (swing slope-based) // โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ longCondition = bias == 1 and bias[1] != 1 // enters long only when bias flips to bullish shortCondition = bias == -1 and bias[1] != -1 // enters short only when bias flips to bearish // Exit levels based on percentage longStop = close * (1 - stopLossPerc / 100) longTP = close * (1 + takeProfitPerc / 100) shortStop = close * (1 + stopLossPerc / 100) shortTP = close * (1 - takeProfitPerc / 100) // Close opposite position first before opening new if longCondition strategy.close("Short") strategy.entry("Long", strategy.long, stop=longStop, limit=longTP) if shortCondition strategy.close("Long") strategy.entry("Short", strategy.short, stop=shortStop, limit=shortTP)
  23. Looks like a good one
  24. raock95

    REQUEST

    @apmoo @fryguy1 Please ReUpload Old Files Netpicks Obsindian Like stuff and Please Replay help us
  25. Crack for Metastock 20 real time. https://workupload.com/file/hUwT9m4FMGj Thankyou to daddypenguin.
  26. Metastock 20 realtime c*****d https://e.pcloud.link/publink/show?code=XZ6qsAZK2otfBPXC0Sn1UJGxn4IL5Do1S9X
  1. Load more activity

โคด๏ธ-Paid Ad- Check advertising disclaimer here. Add your banner here.๐Ÿ”ฅ

×
×
  • Create New...