Skip to main content

Posts

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...
Recent posts

(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...

The Yellow Jacket Movement.

The Yellow Jacket Movement. It’s not only in India that we face surge in fuel prices, excess tax and high cost of living, the world faces it. The most evident revolt against these issues is seen in France right now. The working and the middle classes want economic justice as high prices of everything have made a huge hole in their pockets and the weight of tax have broken their backs. “The Yellow Jacket movement” has begun in France for a better lifestyle. It initially started as a movement against rising fuel prices, a method which the government introduced to curb the lack of budget which proved to be widely unpopular. The already low approval rating of the French President went further low at the beginning of the movement. “The Yellow Jacket movement” or the “The Yellow vest movement” is called so because of the highly visible yellow jackets that all the drivers are required to have in their vehicles, by law, and wear it during emergencies. The jacket has high visibili...

All you need to know about Monero (cryptocurrency)

Monero is a cryptocurrency introduced in April 2014 which focuses on fungibility and decentralization. Monero uses an obfuscated public ledger, meaning anybody can broadcast or send transactions, but no outside observer can tell the source, amount or destination. Monero uses a Proof of Work mechanism to issue new coins and incentivize miners to secure the network and validate transactions. Monero is based on the CryptoNight proof-of-work hash algorithm, which comes from the CryptoNote protocol. It possesses significant algorithmic differences relating to blockchain obfuscation. It's one of the trending coin's currently. You can mine as well as buy from many sites. So today i going to share about mining of monero currency. For this i will be using popular site i.e  Coinhive  by the help of this site you can mine as well as monitor your progress. Step 1:- Create an account on Coinhive Step 2:- After completion of all verification you will be redirected to home page of coin p...

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= ...