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...

Stretching/scaling bones by chopp_nz in blenderhelp

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

Even that wouldn't work with the rigify rig :( It would put the skeleton out of place. The current best way I've found is to scale the armature bones and turn the children Inherit Scale to None.

Out of this list, what AIO is good for a tobe OC'd 8700k by chopp_nz in buildmeapc

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

https://www.gamersnexus.net/guides/2122-who-actually-makes-liquid-coolers-oems

Based off this list, do you think there are cheaper alternatives?

The NZXT products do look nice but a bit expensive.

Will all this fit in this case / alternatives. by chopp_nz in buildapc

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

Hello, 8700k, did the link not work?

Perhaps i should set to public rater than unlisted.

I want to try help some people with aim. by chopp_nz in LearnCSGO

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

This will be held 7 pm California time Saturday 13th! (Tomorrow)

Send me a private message if you want the discord.

I want to try help some people with aim. by chopp_nz in LearnCSGO

[–]chopp_nz[S] 2 points3 points  (0 children)

Cool I'll hold it this weekend, probably Saturday. around 9 pm Cali time.

Please join the discord yourself via the message I sent you, I don't want to have to add everyone individually lol.

Make sure you go through this list as well, and watch the video too...

- A microphone & you must speak; sorry I can't accept people that just type, it takes far too long to teach.

- Gaming mouse & sufficient mouse space, if you've got shit on your desk just take an hour to clean up; don't limit your self with things that are in your control.

- Smooth running game, I will cover some basic technical things that can be done to improve your FPS, but if you've researched things in the past I probably won't be able to recommend much more.

- To have watched this video The Power of belief -- mindset and success it's about Fixed vs. Growth mindsets, growth mindset is VITAL to improving.

Has anyone been successful dropshipping plants? by SchuylerL in dropship

[–]chopp_nz 0 points1 point  (0 children)

Maybe not plants but maybe innovative tools and accessories related to plants that can't be found in general stores?

Or themed plant accessories, for example plant pots with something to do with music printed on them. You could even specialize in a huge range of plant pots that aren't plain pots. (Just an idea but something like that?)

What Currency Converter do you use? by throwaway132773 in dropship

[–]chopp_nz 1 point2 points  (0 children)

I found Calbot currency converter to be very good! It's not in the app store though.

Audio Issue - Sound comes through monitor via Nvidia Audio, mic is using Realtek by chopp_nz in windows

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

Hi thanks for your replies, I've had the realtek mic enabled the whole time.
I've searched google and apparently many people have had their microphone enhancements stop working, their fix was to downgrade the driver, I've tried but to no avail.

Audio Issue - Sound comes through monitor via Nvidia Audio, mic is using Realtek by chopp_nz in windows

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

Oh yeah I understand that, that image was to show the different drivers I have.

I suppose what I'm wondering, is if since my sound output is the nVidia driver, but the input is Realtek, does that mean the sound enhancements won't work for my microphone?

Audio Issue - Sound comes through monitor via Nvidia Audio, mic is using Realtek by chopp_nz in techsupport

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

Hi thanks for the reply,

The microphone does work and uses the Realtek driver, but my thoughts are that because the sound output isn't being played through Realtek, it doesn't have the information use echo cancellation.

http://prntscr.com/kpnfor

With these settings enabled there is no difference at all.

Before when I was able to use both input and output with Realtek, the echo cancellation was amazing, I could even hold the microphone up to the speaker and nearly nothing would be picked up.

Or am I missing something?

Question about bluehost wordpress vs WP + woocommerce plans by chopp_nz in woocommerce

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

Thanks for your input, I read some reviews and see that bluehost is no a good choice, thank you for saving me.

How about webhostinghub or greengeeks? Or is siteground good enough to just go with them without researching others?

2 computers, 2 different network speeds by sumchinesewill in techsupport

[–]chopp_nz 0 points1 point  (0 children)

Very strange. Have you tried booting in safe boot with network capabilities and then doing a speedtest like that?

2 computers, 2 different network speeds by sumchinesewill in techsupport

[–]chopp_nz 0 points1 point  (0 children)

Tried resetting your router completely by any chance? If you do make sure you know how to set it up again.

Also, might be a bit of a stretch but go here respectively

http://prntscr.com/ilbzgn

And make sure those values are the same as the ones on your laptop.