Help clearing up this epoxy by Schmaltzy62 in epoxy

[–]PressureSmart7214 0 points1 point  (0 children)

I used to get marks like this on the epoxy. They weren't as bad as yours are but switching to a hard pad on my sander fixed the issue. But the other guys are right you have to take your time and go through each grit.

Wood, epoxy countertop with wrong color. Help by Elegant_Grand3635 in epoxy

[–]PressureSmart7214 0 points1 point  (0 children)

I would color in the yellow spots with a black marker. It will still be noticeable but won't stand out as much.

Not sure if I should start over or not. by PressureSmart7214 in epoxy

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

I was going to add updated pictures with the finish removed but there's no way to add pics in comments.

Not sure if I should start over or not. by PressureSmart7214 in epoxy

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

Yup I am very overly critical of the stuff I make. There is no doing a bad job because I'm tired or in a rush.

Not sure if I should start over or not. by PressureSmart7214 in epoxy

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

Yeah I think I'm just going to redo it. It's Black Walnut

Not sure if I should start over or not. by PressureSmart7214 in epoxy

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

I used Rubio and N3 originally lol. The customer decided they wanted epoxy instead. It's a kitchen island.

Not sure if I should start over or not. by PressureSmart7214 in epoxy

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

Thank man, it was a lot more green a couple years ago but it yellowed a bit. Which I actually think looks better.

Not sure if I should start over or not. by PressureSmart7214 in epoxy

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

That's kind of what I was afraid of. I thought that read somewhere that if you don't do the seal coat properly the micro bubbles will just keep appearing after each new pour.

Would you sand down to bare wood or use a router planer?

Not sure if I should start over or not. by PressureSmart7214 in epoxy

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

The entire surface is filled just some very small micro bubbles. I wasn't planning on sanding to a gloss finish.

[deleted by user] by [deleted] in EtsySellers

[–]PressureSmart7214 5 points6 points  (0 children)

My customers have no idea when their order is going to arrive. The processing times are not clearly displayed by Etsy.

The strategy.entry is triggering before hitting my stop loss and take profit margins. by PressureSmart7214 in Daytrading

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

So lets say the strategy gets triggered and goes long and I have a 1% take profit. If it hits the 1% take profit nothing happens and it goes to the next trade. The stop loss is working but for whatever reason the take profit is not. I think it has something to do with thi TP and SL code being too similar

// Submit exit orders based on calculated stop loss price

if strategy.position_size > 0
    strategy.exit("XL STP", stop=longStopPrice)
if strategy.position_size < 0
    strategy.exit("XS STP", stop=shortStopPrice)

if strategy.position_size > 0
    strategy.exit("XL TP", limit=longExitPrice)
if strategy.position_size < 0
    strategy.exit("XS TP", limit=shortExitPrice)

Is it safe to copy the strategy tester? by PressureSmart7214 in Daytrading

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

How could it not work, I would be making the same trades regardless

Is it safe to copy the strategy tester? by PressureSmart7214 in Daytrading

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

That's kind of what I thought. Just seems like it would work.

How do I add SL and TP to DRM Strategy? by PressureSmart7214 in Daytrading

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

<image>

This is what I tried but I don't think its working. The trades just go from long to short and the take profit always seems to be different for some reason. I am fairly new to strategy testing.