Skip to content

Instantly share code, notes, and snippets.

@RaamRaam
RaamRaam / list.md
Created May 2, 2023 12:37 — forked from ih2502mk/list.md
Quantopian Lectures Saved
@RaamRaam
RaamRaam / API-MasterList.txt
Created June 22, 2019 16:25 — forked from surajspace/API-MasterList.txt
Sample strateries in Python using UpstoxAPI
class Session:
__init__(api_key)
set_api_secret(api_secret)
set_redirect_uri(redirect_uri)
set_code(code)
get_login_url(self)
retrieve_access_token(self)
class Upstox:
@RaamRaam
RaamRaam / interactive_upstox_api_sample.py
Created June 22, 2019 16:22 — forked from svishi/interactive_upstox_api_sample.py
Python SDK - Sample Code - Interactive API
from upstox_api.api import *
from datetime import datetime
from pprint import pprint
import os, sys
from tempfile import gettempdir
try: input = raw_input
except NameError: pass
u = None
@RaamRaam
RaamRaam / README-Template.md
Created May 3, 2019 11:05 — forked from PurpleBooth/README-Template.md
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites