Why are there illegal option orders in the orderbook?

Discussion in 'Order Execution' started by earth_imperator, May 5, 2023.

  1. cesfx

    cesfx

    I don't have the knowledge to know that as a fact.
    By using common sense, I guess anyone, if the volume is lacking on that particular strike and stock.

    Let's say nobody is trading that put, and a market maker, or a trader, writes one for an inflated price.
    I don't see anything wrong with it. It probably won't get filled, unless a noob comes by and hit the ask.

    I think that if you try to sell that put for, let's say 3$, you might see the ask going down from 5 to 3. And obviously won't get filled, unless someone is throwing money away.

    No fraud.
     
    Last edited: May 5, 2023
    #11     May 5, 2023
  2. IMO it's very well a fraud to also manipulate (inflate) the IVs...
     
    #12     May 5, 2023
  3. newwurldmn

    newwurldmn

    It’s not a fraud. An option can be any price. At some prices it’s arbitrageable.

    The market makers have an obligation to show a two sided quote that is at least 5 dollars wide.

    You are welcome to represent a lower offer if you want.
     
    #13     May 5, 2023
    TrailerParkTed likes this.
  4. I doubt. Give a proof example.

    Do you have a reference for this claim?

    The MMs and their patrons have a method to manipulate the IVs, and with it all the margin requirements for the traders...
    What a corrupt system...
     
    #14     May 5, 2023
  5. newwurldmn

    newwurldmn

    1. Two people can trade an option on any price they want. It doesn't have to be non-arbitrageable nor does it have to fit some implied vol calculation or black scholes model.

    2. I do, but i'm not going to dig it up. You can look for it online if you want. But notice how many illiquid options have bid ask spreads of 4.9. it's not a coincidence.

    3. If you believe that, you don't understand how volatility trading works.
     
    #15     May 5, 2023
    TrailerParkTed and destriero like this.
  6. Here's some C++ code that returns the valid min and max premiums for the specified parameters.
    Works both for Call and Put options.
    If you see quotes outside these limits, then be alerted about fraudulent quotes...
    Code:
    struct MinMax_t
      {
        double Min, Max;
        MinMax_t(const double AMin, const double AMax)
         : Min(AMin), Max(AMax) {}
      };
    
    MinMax_t get_min_max_premium(const bool fCall, const double UnderlyingSpot, const double Strike)
      {
        return MinMax_t(max(0.0, fCall ? UnderlyingSpot - Strike : Strike - UnderlyingSpot),
                        fCall ? UnderlyingSpot : Strike);
      }
    
    Ie. calling the above function like this:
    ...
    MinMax_t MM = get_min_max_premium(fCall, UnderlyingSpot, Strike);
    ...
    Ie. the result is in the structure MM...
     
    Last edited: May 5, 2023
    #16     May 5, 2023
  7. cesfx

    cesfx

    LOL
     
    #17     May 5, 2023
  8. "MM" intentionally... :)
     
    #18     May 5, 2023
  9. MrMuppet

    MrMuppet

    Is this some clown shit troll post????

    If you want to sell a put struck at 5$ for 6$, well, go ahead and type in that order. Unless you're a market maker obliged to fulfill min spreads and quote uptime, you can do whatever you want.

    If the other guy does that trade with you he's an idiot but there is nothing illegal involved.
    And spare me with that BSM bullshit. The formula is a framework to put options quotes into perspective and not some magic that a bunch of scientists discovered to be the be all end all for an options price.

    My guess is that you've been fleeced lately and now you're looking for an excuse
     
    #19     May 5, 2023
    taowave and rb7 like this.
  10. I'm angry b/c scanner results based on IV include also such buggy results caused by such buggy quotes.
    As well sorted IV lists with such buggy IVs caused by such buggy quotes.

    It's MM fraud, gangsters they are!

    Fixing these bugs means to fix Bid, Ask, as well IV. It all takes extra computing time, and in case of finding the new IV it's very costly as this can be done only iteratively.
     
    Last edited: May 5, 2023
    #20     May 5, 2023