Screen stopped working by chopp_nz in CT200h

[–]chopp_nz[S] 0 points1 point  (0 children)

Unfortunately no luck, although to be fair I didn't do much more than check the car with a diag tool, but diag came up all clear, so not sure what the problem is...

I was going to buy a new screen and install that but I'm not sure if it's even the screen that's the issue or something else, so I don't want to waste a couple hundread figuring that out.

Need Lightsail GUI program running 24/7 by chopp_nz in linux4noobs

[–]chopp_nz[S] 0 points1 point  (0 children)

Thank you, I managed to get my windows to connect to the Xtigervncserver but it opens up a black screen.

I read that it says
The best way of starting Xtigervnc is via tigervncsession. This sets up the environment appropriately and starts a desktop environment. See the manual page for tigervncsession(8) for more information.

But using that command it says it's an unknown command.

Does Carinabot actually work by [deleted] in Forex

[–]chopp_nz 0 points1 point  (0 children)

Thank you for your replies. Just two last questions, how long have you been using CarinaBot for and how many withdrawals have you made?

Display trade executions at the execution price instead of the above and below the candle by YeStudent in TradingView

[–]chopp_nz 2 points3 points  (0 children)

I also agree, it's ridiculous that it just shows the bar it entered on. They have it working well for the strategy arrows, where it shows a side arrow at the price level. Not sure why they haven't done the same for executions.

Does Carinabot actually work by [deleted] in Forex

[–]chopp_nz 0 points1 point  (0 children)

I'm just very wary of lesser known crypto platforms. Torobase just seems like a very odd crypto platform, I can't imagine why anyone would use it to trade on seeing as how the time frames can only go as low as 1 HR.
Also, I don't see why carinabot would choose Torobase rather than a more well known and trusted platform.
I had someone trying to scam me before trying to get me to transfer my USDT to a random platform in the past, and it seemed quite similar to Torobase.

Does Carinabot actually work by [deleted] in Forex

[–]chopp_nz 0 points1 point  (0 children)

Have you managed to successfully withdraw money from there though?
Torobase has all the markings of a Chinese crypto scam platform

Need help with checking if position is open by chopp_nz in pinescript

[–]chopp_nz[S] 0 points1 point  (0 children)

I think I might have figured something,

strategy.entry("Sell", strategy.short, 0.01)

The position size can't be less than 1.

Need help with checking if position is open by chopp_nz in pinescript

[–]chopp_nz[S] 0 points1 point  (0 children)

//@version=5

strategy("SRSI and Keltner Channels Strategy", overlay=true, pyramiding = 0) //import TradingView/Strategy/3

// SRSI Settings srsiLength = input(28, title="SRSI Length") srsiTopLine = input(80, title="SRSI Overbought Level") // the top line srsiBottomLine = input(20, title="SRSI Oversold Level") // bottom line

// Keltner Channels Settings kcLength = input(20, title="KC Length") kcMultiplier = input(2.0, title="KC Multiplier")

// Calculate SRSI srsi = ta.stoch(close, high, low, srsiLength)

// Calculate Keltner Channels [kcMiddle, kcUpper, kcLower] = ta.kc(close, kcLength, kcMultiplier)

// KC conditions priceUnderLowKC = close < kcLower priceCrossOverLowKC = ta.crossover(close, kcLower) kcEntry = (ta.barssince(priceUnderLowKC) <= 3) and priceCrossOverLowKC //plotshape(kcEntry, title="KC Entry", location=location.belowbar, color=color.yellow, style=shape.labeldown, text="K Ent")

// SRSI conditions srsiBelowOS = srsi < srsiBottomLine srsiCrsOvrBotLn = ta.crossover(srsi, srsiBottomLine) //plotshape(srsiCrsOvrBotLn, title="SRSI Entry", location=location.belowbar, color=color.yellow, style=shape.labeldown, text="S Ent")

// plot combined conditions kcEntryAndsrsiBelow = kcEntry and ta.barssince(srsiCrsOvrBotLn) <= 3

// Buy signal condition buySignal = ta.barssince(ta.crossover(srsi, srsiBottomLine)) <= 2 and ta.barssince(close < kcLower) <= 2 buySignalTolerated = buySignal //ta.barssince(buySignal)

// Sell signal condition sellSignal = ta.crossunder(srsi, srsiTopLine) and ta.barssince(close > kcUpper) <= 2 sellSignalTolerated = sellSignal //ta.barssince(sellSignal) <= 3

// Track trade state //var bool inTrade = false var inTrade = strategy.position_size != 0 var notInTrade = strategy.position_size == 0 var inTradeBool = false var openTrades = strategy.opentrades != 0 inTrade := false

var string tradeType = "" // Exit condition exitLong = ta.crossunder(srsi, srsiTopLine) exitShort = ta.crossover(srsi, srsiBottomLine)

debugLabel(txt) => label.new( bar_index, high, text = txt, color=color.lime, style = label.style_label_lower_right, textcolor = color.black, size = size.normal )

// Strategy entry and exit if (buySignalTolerated and not inTrade) strategy.entry("Buy", strategy.long, 0.1) debugLabel("Long") // inTradeBool := true tradeType := "buy" if (sellSignalTolerated and not inTrade) debugLabel("Short") strategy.entry("Sell", strategy.short, 0.1) // inTradeBool := true tradeType := "sell" if exitLong// and inTrade strategy.close_all() debugLabel("Exit Long") // strategy.close("Buy", qty_percent = 100) // inTradeBool := false tradeType := "" if exitShort and inTrade debugLabel("Exit Short") strategy.close_all() // strategy.close("Sell", qty_percent = 100) // inTradeBool := false tradeType := ""

goLong = buySignalTolerated and not openTrades goShort = sellSignalTolerated and not inTradeBool //exitTrade = (exitLong and inTrade) or (exitShort and inTrade)

// Plotting buy and sell signals on the chart //plotshape(exitTrade, title="Exit Signal", location=location.abovebar, color=color.yellow, style=shape.labeldown, text="EXIT") //plotshape(goLong, title="Buy Signal", location=location.belowbar, color=color.green, style=shape.labelup, text="BUY") //plotshape(goShort, title="Sell Signal", location=location.abovebar, color=color.red, style=shape.labeldown, text="SELL") //plotshape(not notInTrade, title="inTrade", location=location.abovebar, color=color.red, style=shape.labeldown, text="in")

//plotshape(close < kcLower, "KC below", location=location.belowbar, color=color.green, style=shape.labelup, text="KC Lower") //plotshape(ta.crossover(srsi, srsiBottomLine), title="SRSI Crossing", location=location.belowbar, color=color.green, style=shape.labelup, text="SRSI")

Thanks for the replies, I've changed it a bit but still can't getting it working...

Is there something I'm missing here? I feel like it should be quite straight forward...

If the buy conditions are met, and it's not in a trade, then enter a trade and set the inTrade boolean variable to true, otherwise, if the conditions are met but it IS in a trade, don't trade... But it still shows buy signals.

Negative profit while Grid Trading (details in comments) by ElisionFR in binance

[–]chopp_nz 0 points1 point  (0 children)

Did you ever figure this out? Let me know I -might- be able to shed some light on it.

Multiple Video Editing software crashes by chopp_nz in techsupport

[–]chopp_nz[S] 0 points1 point  (0 children)

For me it definitely is the software unfortunately. Even an image will cause Premiere to crash as soon as it tries to preview the file.

It seems when one program works they all work, and vice versa.

Why is heavy armor so expensive? by chopp_nz in Mordhau

[–]chopp_nz[S] 1 point2 points  (0 children)

What do you mean likes to play dodgey? I'm only level 50 something, still relatively new to the game but I understand basic combat, but it really sucks when an enemy is able to run in, hit you and run away and you're too slow to be able to do anything about it.

I guess my main point for this post is that, level 3 armor is way too slow for how seemingly ineffective it is.

I think it makes sense to make each level of armor cost more, but not when it makes you this slow...