Search results

  1. kmiklas

    API access to my programmer

    Give him your paper trading account credentials for dev and test. I wouldn't give out my real auth info. These keys and other auth info should be read from a separate config file. When code is delivered, use keys in your file; e.g.: keys.json { "api_key": 123456, "app_key": 234567...
  2. kmiklas

    How to calculate realtime stats?

    Bravo... impressive start! :thumbsup: 1. Take an OOP approach and create Rtq as a class, so that you can add methods and easily create new queue objects as needed. 2. Use collections.deque for the queue, and wrap it with your class, so that you have some methods available. Make the actual queue...
  3. kmiklas

    Institutional Buying/Selling

    This is a broad topic is called "Execution Tactics." There's a lot of techniques out there. VWAP and variants are quite popular. Here is one example on Investopedia: an Iceberg order, a form of Hiding https://www.investopedia.com/terms/i/icebergorder.asp Here's a list from Algorithmic...
  4. kmiklas

    How to calculate realtime stats?

    Note that you probably don't want your t0 and t1 to be a single price quote or you risk running your maths on an outlier. I did it by first storing 15 minutes of price data in a circular FIFO. Then I'd compute my t0 as an average of n minutes, and my t1 as 15-n minutes. Ex: t0 as an average of...
  5. kmiklas

    How to calculate realtime stats?

    Can you imagine and define a simple statement of the indicator that you think is there? Such as, "Over 1000 trials, in cases where the volume-weighted average price from t0 to t1 increased by 0.5%, 57% of the time, continued positively from t1 to t2 by at least 0.1%. This percentage is beyond...
  6. kmiklas

    How to calculate realtime stats?

    Spin up a thread to fill a circular FIFO queue with data, and another to read the data and do the math (calculate mean median mode sd etc) every t time units, find the delta and determine if its good enough for a buy/sell signal. That being said, in my opinion and having been down this path in...
  7. kmiklas

    COVID-19 mRNA Vax and Immune System Disorders

    Wrong on three points: 1. Not nonsense: a well-structured argument 2. Not anti-vax: it's critical thinking and risk assessment 3. I wrote it myself.
  8. kmiklas

    COVID-19 mRNA Vax and Immune System Disorders

    The big cover-up is the risk for immune system disorders. Traditional vaccines work by exposing the patient to a weakened version of a virus; e.g., the Salk vaccine for polio was dropped into a sugar cube, and ingested. In response, the body creates messenger RNA, or mRNA, which specifies how...
  9. kmiklas

    Have you ever tried LAMP route

    By LAMP do they mean Linux-Apache-MySQL-PHP?
  10. kmiklas

    Open-Source Social Media Platform?

    Heya Peeps, Any good social media platform software available? Maybe on Github? I've been hunting around but nothing jumps out. Something that I can install on a server and create a platform for community creation. I'd like to set up my own social media site, and/or empower people to set them...
  11. kmiklas

    Vax: Free beer, xBox, flights, sweepstakes, baseball, child care, and more...

    Let's see what we can get 'em for. I'll take the first jab for a 1oz gold eagle. How desperate are they? God only knows what's in that shot. They're probably sterilizing people. All free my @$$. I guess we found more QE dollars.
  12. kmiklas

    Can a slope which exceeds a value be considered a pattern?

    Assume two price points are taken at time t; say, at USD29.43 at time 0, and 32.78 at time 1. The slope of these lines, given by the good-ole' fashioned rise/run method is: y2 - y1 32.78 - 29.43 3.35 m = --------- = --------------- = ------ = 3.35 x2 - x1 1 - 0...
  13. kmiklas

    Please help if you can, support via IB not great up to now

    A click n' drag draws a trendline, as I'm sure you're aware. I think that a SHIFT-click n' drag to draw a trendline, and a click n' drag to scroll the chart makes more UX sense.
  14. kmiklas

    Please help if you can, support via IB not great up to now

    I feel same. You can use the left/right arrow keys to scroll a chart. A little jumpy.
  15. kmiklas

    the Tokyo Olympics are turning into a mess

    President Biden commented on this: Reference: https://www.nytimes.com/2021/07/20/us/politics/joe-biden-tokyo-olympics
  16. kmiklas

    New Evidence Indicates Enough Illegal Votes In Georgia To Tip 2020 Results

    My friend from PA said that THREE TRUCKFULLS arrived on election night. Quietly down the back-roads. Disgusting...
  17. kmiklas

    No Vax Until Trump's Twitter is Reinstated

    Without President Trump's Twitter feed, where can I go for fact-based, unbiased information? Everything else is spewing lies with a media spin. If President Trump were to endorse the vaccine on his Twitter feed, I'd get it. I miss his positive tweets so much. I remember his lovely Merry...
  18. kmiklas

    New Evidence Indicates Enough Illegal Votes In Georgia To Tip 2020 Results

    https://thefederalist.com/2021/07/09/new-evidence-indicates-enough-illegal-votes-in-georgia-to-tip-2020-results/ New evidence indicates that more than 10,300 illegal votes were cast in Georgia in the November 2020 general election — a number that will continue to rise over the next several...
  19. kmiklas

    No Vax Until Trump's Twitter is Reinstated

    Sorry... I must be getting senile... just like the confused geriatric that is the figurehead for our country. Greatest steal in history; truckloads of votes on election night. ps I also don't want an immune system disorder.
  20. kmiklas

    No Vax Until Trump's Twitter is Reinstated

    Why am I not vaxxed? Because I can't find out what The President advises; his Twitter account has been frozen. Restore his social media accounts--with all previous posts--then we vax. A little something for you pro-vaxxers to think about. It's all about Freedom of Speech and Expression, boys...
Back
Top