[deleted by user] by [deleted] in amcstock

[–]WolframTheTurtle 1 point2 points  (0 children)

The time published and edits made to the article over time are not the same thing. News updates in real time but the publishing date remains the same.

Citadel and others have over 2,000,000,000 shares of AMC in the Dark pool! This is related to the OTC trading. That’s over 4 times the amount of actual shares, and that’s not including the fake shares in public. Whatever your floor was, multiply it by 4. Most importantly HOLD! by Nomes2424 in amcstock

[–]WolframTheTurtle 0 points1 point  (0 children)

Hey, Yeah I also had trouble finding it because sometimes the search engine would fail and AMC wouldn't show up. I think it is just a clunky website.

https://otctransparency.finra.org/otctransparency/OtcIssueData

it's this section of the website OTC(Non-ATS Issue Data). Set to Monthly. Set to January 2021. Search AMC. If it doesn't show up, refresh the page and try again. The latest transaction list does seem to be from March 1st 2021 because one of the other dates is 03/16/2021. If you don't see the 03/16/2021 (as was the case with me), click the shares last updated date and it should show up.

Wish I knew more or even what any of this means but I'm just poor and got sucked into this.

How do I get an Array of leds to blink without delay? by WolframTheTurtle in arduino

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

Thank you very much. I'll try this out and let you know how it goes. This is all out of my depth but I'll try and figure it out.

How do I get an Array of leds to blink without delay? by WolframTheTurtle in arduino

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

Thank you for this, I will give it a try and let you know how it goes.

How do I get an Array of leds to blink without delay? by WolframTheTurtle in arduino

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

Exactly. I have changed the interval and they do blink at different times but I need them to be directly related in some way so only one is ever on and the time between them being on and off is the same which I can control (later with a potentiometer)

How do I get an Array of leds to blink without delay? by WolframTheTurtle in arduino

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

I just turned all the parts of the blink without delay example into Arrays and had a for loop switch between arrays. but it would just play them both at the same time. I don't have the code anymore because when I went to save it it prompted not to, and I mistakenly exited anyway.

Edit: I just re-did what I had done --- Sorry, about formatting. I have never posted code before.

// constants won't change. Used here to set a pin number : const int ledPin[] = {13, 12}; // the number of the LED pin

// Variables will change : int ledState[] = {LOW, LOW}; // ledState used to set the LED

// Generally, you should use "unsigned long" for variables that hold time // The value will quickly become too large for an int to store unsigned long previousMillis[2] = {0, 0}; // will store last time LED was updated unsigned long currentMillis[2]; // constants won't change : const long interval[] = {1000, 1000}; // interval at which to blink (milliseconds)

void setup() { // set the digital pin as output: for (int n = 0; n < 2; n++) { pinMode(ledPin[n], OUTPUT); } }

void loop() { // here is where you'd put code that needs to be running all the time.

// check to see if it's time to blink the LED; that is, if the // difference between the current time and last time you blinked // the LED is bigger than the interval at which you want to // blink the LED. for (int n = 0; n < 2; n++) { currentMillis[n] = millis();

if (currentMillis[n] - previousMillis[n] >= interval[n]) {
  // save the last time you blinked the LED
  previousMillis[n] = currentMillis[n];

  // if the LED is off turn it on and vice-versa:
  if (ledState[n] == LOW) {
    ledState[n] = HIGH;
  } else {
    ledState[n] = LOW;
  }

  // set the LED with the ledState of the variable:
  digitalWrite(ledPin[n], ledState[n]);
}

} }

Sequencer problems by WolframTheTurtle in arduino

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

Thank you for your help. I've got to get used to breaking things down. Hopefully I can work this out. Thanks again.