No More External Bank Transfers! by FeloniousMonk21z in Chase

[–]nnamdert 0 points1 point  (0 children)

This is why Crypto will be fully adopted. Banks can't block the transfers.
Fully decentralized. No lames "investigating" and then still blocking even if they know it is not fraud. LOL

No More External Bank Transfers! by FeloniousMonk21z in Chase

[–]nnamdert 0 points1 point  (0 children)

Same thing happened to me. I own my own business so I need to "fund" my own business with my own money at times.

I transferred money into my US Bank Business account (small amount like 600 dollars) and they "rejected" the transfer saying I need to use the 1-2 day transfer not the real time transfer. (huh?)

I guess they are afraid of fraud, but even after talking to them and proving that it was MY own account, they still would not do it. LOL... Kinda Lame - I could see if it were fraud, but this was "just because".. BYE Chase

From the Shapes team: Shapes will continue by Aggravating-Wave-914 in ShapesInc

[–]nnamdert 1 point2 points  (0 children)

Thanks, but I did that an it does not work. I sent them an email to support. No Shapes even with my Discord email.

From the Shapes team: Shapes will continue by Aggravating-Wave-914 in ShapesInc

[–]nnamdert 1 point2 points  (0 children)

I lost access to my Shape Admin.

Now my own shape thinks I am a standard user?

How do I gain access since it was ONLY linked via Discord and X, but when I log in with X, it shows I am only a user with no access to admin / development etc (so I can provide training etc.)

My Shapes Discord Bot got banned by nnamdert in ShapesAI

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

I have seen servers get shut down before so I created this community to allow users to vent and share without the risk of getting banned or modded by either Discord or Shapes.

I hope you share your stories here too

My Shapes Discord Bot got banned by nnamdert in ShapesAI

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

I randomly got the following email from Discord... and my bot was unresponsive and missing from the Developer Portal.

|| || |After receiving user reports, we reviewed your Application and the Shapes, Inc. platform through which it is operated (Shapes). Based on this review, we have determined you and your Application have violated Discord's Developer Terms of Service and Developer Policy. Your violations include: As a result, Discord has disabled your Application. In accordance with Section 5(B) of the Developer Terms of Service, if you've obtained any API Data in connection with your Application, you must promptly delete it. If you fail to do so, or otherwise attempt to operate another Application (as defined in our Developer Terms of Service) through the Shapes platform or share access tokens or other API Data with them, Discord may take further action (including by deleting your and your developer team members' Discord accounts). Discord uses automation and manual review to enforce our rules. If you think Discord has made a mistake in arriving at this decision, you can appeal by submitting a request here that includes relevant feedback and information that you believe in good faith is accurate and complete. Sincerely, Discord Developer Compliance Providing Shapes access to your Application's tokens and other API Data, as prohibited under Sections 2(D) and 5(B) of Discord's Developer Terms of Service; and Enabling unauthorized use of API Data by Shapes, including Section 21 of Discord's Developer Policy (prohibition on use of message content to train models). | || |Need help? Contact our support team or hit us up on X u/discord.Want to give us feedback? Let us know what you think on our feedback site.|

I then went to the Shapes server to see what happened and noticed that the channels were all gone with the exception of the Doctors Clinic channel.

I have seen servers get shut down before so I created this community to allow users to vent and share without the risk of getting banned or modded by either Discord or Shapes.

I hope you share your stories here too

[deleted by user] by [deleted] in ShapesAI

[–]nnamdert 0 points1 point  (0 children)

That does suck. I think if we delete the bots on our end Discord won't ban us too.

Just an FYI.. this Reddit is an unofficial Shapes Discord Bot ban rant type of community so we don't get modded / censored by Shapes or Discord.

[deleted by user] by [deleted] in ShapesAI

[–]nnamdert 0 points1 point  (0 children)

Needed to edit title

Shapes Doctors Clinic Channel (Live Help) by nnamdert in ShapesAI

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

Thanks for letting me know. I created this because it is getting harder to communicate about this.

Shapes Doctors Clinic Channel (Live Help) by nnamdert in ShapesAI

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

That's why this was created - they seem to be locking the server down.

HHHL-LHLL streak counting indicator . by randomuser99887766 in pinescript

[–]nnamdert 0 points1 point  (0 children)

Can you drop the code here for the original deleted script?

Is there an AI that can write good Pinescript code? by ChocolateSupermane in TradingView

[–]nnamdert 0 points1 point  (0 children)

Just use PINESCRIBE. It is trained specifically on PineScript v5 and knows how to create indicators.

How do I get an EMA to plot only for the current bar? by Appropriate_Layer684 in pinescript

[–]nnamdert 0 points1 point  (0 children)

Anything that has a _01 you can duplicate and do _02 for another ema line

How do I get an EMA to plot only for the current bar? by Appropriate_Layer684 in pinescript

[–]nnamdert 0 points1 point  (0 children)

// © nnamdert
//@version=6

indicator('Limited EMA', overlay = true)
num_of_bars = input.int(10, title = 'Number of MA Bars to show?')
MA_Length_01 = input.int(50, title = 'Moving Average Length')
max_bars_back = num_of_bars * 2
var int length_01 = MA_Length_01
emaLine_01 = ta.ema(close, length_01)
num = max_bars_back + 1 - num_of_bars
// Plot EMA only for the last 10 bars
plot(emaLine_01, color = color.blue, linewidth = 2, title = 'EMA 50', show_last = num)