Tagged: stocks

0

Indicators cheat sheet

Source: http://www.tradeciety.com/the-ultimate-indicator-cheatsheet/   Related posts: Swing trading resources Indicator Bullshit: Do You Really Think All of the Indicators Will Help You Win? Installing zipline module in pycharm? Stock Indicators, Patterns and Strategies

0

Maintaining database of price file using R

Source: http://www.thertrader.com/2015/12/13/maintaining-a-database-of-price-files-in-r/ Steps Prepare a list of securities (onetime) Setup initial data file (onetime) Update data files (periodic)   1. Prepare a list of securities One time setup. If changed on demand then will have to call initial data setup. File: /Users/rdebnath/robin/ticker_data/r-input/listOfInstruments.R...

0

Swing trading resources

Scan resources Chart resources Indicators Strategies Analysis with R Bullish in last 7 days 6 SIMPLE WAYS TO SCAN FOR SWING TRADING OPPORTUNITIES Swing Trading Stock Screener. How to Scan for Winning Stocks TAZ Traders action zone How to Use...

0

Analyzing top gainer loser data

Housekeeping with mysql Downloading data from wsj using python script here Concatenating daily files # Below command concatenates files and skips the first row of each file $ tail -q -n +2 *.tsv > /tmp/stock_aggr.tsv Creating table in mysql drop...

0

WSJ Top Loser Gainer pull

Below code will pull losers and gainers from wsj.com for a given date range, #!/usr/bin/env python from lxml import html import requests import sys import os import humanize import pandas # from datetime import date, timedelta import datetime import re...