Skip to main content

(for Beginers)Few points to remember while trading Options

Hi, I am back with some new random information which you might find useful if you are new to trading. I am sure this point will help you to grasp the market fast and avoid unexpected losses.

Before knowing how to trade options first we need to know about the terminologies used in stock market options:

CE = Call Options
PE = Put Options

Call or Long or Buy signifies upside.
Put or Short or Sell signifies downside.

in case of Buy order:-

Nifty May 15500 CE = Nifty Staying above 15500.(you are betting that Nifty will stay above 15500 at the end of the trading session of last Thursday of May)
Nifty May 14800 PE = Nifty Staying below 14800.(you are betting that Nifty will stay below 14800 at the end of the trading session of last Thursday of May)

In case you are selling instead of buying then the meanings become opposite of above lines. If a date is present with them then it represents the last day of that options.

Predicting NIFTY & NIFTY BANK that they will stay in a x and y range tomorrow or not is comparatively easy than predicting it will stay in that range at the time of expiry as there will be a dozen of movements & factors before that.

Suppose if someone else bet on the same thing you do after few days; his chance of winning is always higher than yours and hence to re-balance this options value decreases with respect to time towards their expiry. This is called Theta.

"The higher the time to expiry, the higher the uncertainty. The higher the uncertainty, the higher the premium of the options." 

Q. When to trade?

A. Always try to trade on either Tuesday or Friday. Do not trade on Monday, Wednesday and Thursday. Trading on Saturday, Sunday happens only because of Muharat or Budget day special else its a no trading day. On Wednesday & Thursday there is a high chance that your long straddle might give you loss so we avoid it. Always try to observe the market on these days.

I have seen many new traders to win there first trade in a fluke then due to that fluke they blow there account to 0 as at first you just buy the stocks/options for testing but when you get a profit without any hard work it corrupts you and a greed is formed so try to trade with discipline.

Do not over-trade always set a limit to trade in a day/week/month so that you don't give out brokerage more than your earned profit after taking so much risks.

3 important rules:-

  1. Buy Strength, Sell Weakness
  2. Be flexible with patterns
  3. Always Look for prior trends

Do-Not

  • Trade to large(Only invest extra capital)
  • Over-Trading
  • Stay in the game, Quit when necessary

Do not trade too large as if you incur a loss then you might get hurt so bad that you can't bounce back.

Always trade with a stop loss to how much you can afford to lose.

Don't take extra risk for extra profit. You will be blown by market.

Don't think you can over-smart market. Market is managing million of peoples like us every second so it has more power and intelligence than us. So always try to place orders in the market directions rather than thinking that market will go with your thought process. It may come true once but it might be a trap of market to blow your account so trade safely & smartly.

Comments

Popular posts from this blog

Google Dorks list

Google Dorks are used for searching websites in google search engine or in CLI. It can also help you in hacking as it shows the specific results which contains your search strings. Some of the Google Dorks are given below I tried to include all of them and sorry if any duplicacy. You can download or view this from  here about.php?cartID= accinfo.php?cartId= acclogin.php?cartID= add.php?bookid= add_cart.php?num= addcart.php? addItem.php add-to-cart.php?ID= addToCart.php?idProduct= addtomylist.php?ProdId= adminEditProductFields.php?intProdID= advSearch_h.php?idCategory= affiliate.php?ID= affiliate-agreement.cfm?storeid= affiliates.php?id= ancillary.php?ID= archive.php?id= article.php?id= phpx?PageID basket.php?id= Book.php?bookID= book_list.php?bookid= book_view.php?bookid= BookDetails.php?ID= browse.php?catid= browse_item_details.php Browse_Item_Details.php?Store_Id= buy.php? buy.php?bookid= bycategory.php?id= cardinfo.php?card= cart.php?action= ...

Hack SQL vulnerable websites with sqlmap

As the web is expanding day by day same way the hackers are also gaining new ways to access the data of your or any random website all you need to do is few lines of code and you are all done. Today i will tell you most common way to hack a website without any restrictions all you need is a vulnerable site and you are all done. NOTE: This is for educational purpose only. I am not responsible for anything. Try at your own risk. SQLMAP is availabe in linux and mac OS. If not you can install it via apt and other possible ways. syntax > sqlmap / [ ,options/ ] First of all make your device ready for hacking that is by installing necessary software's and files like Tor , Orbot  (Android),  Orfox (Android) or any other tor supported browser. And don't use it for your personal works. And if possible use VM's for hacking to make it more anonymous. Run tor or orbot and connect via VPN to be anonymous (i.e to hide and secure yourself). then you can open terminal on...

Python Code for Trading Indicators

Hi Everyone, I am back with some random things again. So today i will share codes of popular trading indicators which you can use while creating your own trader with machine learning in python. so at first you need to import the below libraries import numpy as np import pandas as pd from pandas_datareader import data as web import matplotlib.pyplot as plt then after the above step is done then you need to assign few of the local variables you can also take them as input as per your requirement stock_name="SBI" #for nifty: ^NSEI n = 20 #window size start_date = "2021-04-01" end_date = "2021-06-03" then after it is done you need to create a function which can be used to extract the data from the yahoo finance and for that the code is provided below def getData():     stock_data = web.DataReader(stock_name, start=start_date, end=end_date, data_source='yahoo')     stock_df=pd.DataFrame(stock_data)     return stock_df The above code will return da...