update dark pool cronjob
This commit is contained in:
parent
9748b88624
commit
d0bb52cd2b
112
app/cron_dark_pool.py
Normal file
112
app/cron_dark_pool.py
Normal file
@ -0,0 +1,112 @@
|
|||||||
|
import ujson
|
||||||
|
import asyncio
|
||||||
|
import aiohttp
|
||||||
|
import sqlite3
|
||||||
|
from tqdm import tqdm
|
||||||
|
from datetime import datetime,timedelta
|
||||||
|
import os
|
||||||
|
from dotenv import load_dotenv
|
||||||
|
from concurrent.futures import ThreadPoolExecutor
|
||||||
|
from finra_api_queries import finra_api_queries
|
||||||
|
|
||||||
|
# Load environment variables
|
||||||
|
load_dotenv()
|
||||||
|
api_key = os.getenv('FINRA_API_KEY')
|
||||||
|
api_secret = os.getenv('FINRA_API_SECRET')
|
||||||
|
api_token = finra_api_queries.retrieve_api_token(finra_api_key_input=api_key, finra_api_secret_input=api_secret)
|
||||||
|
|
||||||
|
start_date = datetime.today() - timedelta(365)
|
||||||
|
end_date = datetime.today()
|
||||||
|
start_date = start_date.strftime("%Y-%m-%d")
|
||||||
|
end_date = end_date.strftime("%Y-%m-%d")
|
||||||
|
|
||||||
|
dataset_name = "regsho_daily_shorts_volume"
|
||||||
|
filtered_columns_input = ['tradeReportDate', 'securitiesInformationProcessorSymbolIdentifier', 'shortParQuantity', 'shortExemptParQuantity', 'totalParQuantity']
|
||||||
|
date_filter_inputs = [{'startDate': start_date, 'endDate': end_date, 'fieldName': 'tradeReportDate'}]
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
async def get_data(ticker):
|
||||||
|
try:
|
||||||
|
filters_input = {'securitiesInformationProcessorSymbolIdentifier': [ticker]}
|
||||||
|
|
||||||
|
df = finra_api_queries.retrieve_dataset(
|
||||||
|
dataset_name,
|
||||||
|
api_token,
|
||||||
|
filtered_columns=filtered_columns_input,
|
||||||
|
filters = filters_input,
|
||||||
|
date_filter=date_filter_inputs)
|
||||||
|
|
||||||
|
df = df.rename(columns={"tradeReportDate": "date","totalParQuantity": "totalVolume", "shortParQuantity": "shortVolume", "securitiesInformationProcessorSymbolIdentifier": "symbol", "shortExemptParQuantity": "shortExemptVolume"})
|
||||||
|
summed_df = df.drop('symbol', axis=1).groupby('date').sum().reset_index()
|
||||||
|
data = summed_df.to_dict('records')
|
||||||
|
|
||||||
|
# Iterate through the list and calculate the percentages
|
||||||
|
for record in data:
|
||||||
|
total_volume = record["totalVolume"]
|
||||||
|
short_volume = record["shortVolume"]
|
||||||
|
short_exempt_volume = record["shortExemptVolume"]
|
||||||
|
|
||||||
|
# Calculate percentages
|
||||||
|
short_percent = round((short_volume / total_volume) * 100,2)
|
||||||
|
short_exempt_percent = round((short_exempt_volume / total_volume) * 100,2)
|
||||||
|
|
||||||
|
# Add new elements to the dictionary
|
||||||
|
record["shortPercent"] = short_percent
|
||||||
|
record["shortExemptPercent"] = short_exempt_percent
|
||||||
|
|
||||||
|
return data
|
||||||
|
|
||||||
|
except Exception as e:
|
||||||
|
print(f"Error fetching data for {ticker}: {e}")
|
||||||
|
return []
|
||||||
|
|
||||||
|
async def save_json(symbol, data):
|
||||||
|
# Use async file writing to avoid blocking the event loop
|
||||||
|
loop = asyncio.get_event_loop()
|
||||||
|
path = f"json/dark-pool/companies/{symbol}.json"
|
||||||
|
os.makedirs(os.path.dirname(path), exist_ok=True)
|
||||||
|
await loop.run_in_executor(None, ujson.dump, data, open(path, 'w'))
|
||||||
|
|
||||||
|
async def process_ticker(ticker):
|
||||||
|
data = await get_data(ticker)
|
||||||
|
if len(data)>0:
|
||||||
|
await save_json(ticker, data)
|
||||||
|
|
||||||
|
async def run():
|
||||||
|
con = sqlite3.connect('stocks.db')
|
||||||
|
etf_con = sqlite3.connect('etf.db')
|
||||||
|
|
||||||
|
cursor = con.cursor()
|
||||||
|
cursor.execute("PRAGMA journal_mode = wal")
|
||||||
|
cursor.execute("SELECT DISTINCT symbol FROM stocks WHERE marketCap >= 1E9 AND symbol NOT LIKE '%.%'")
|
||||||
|
stocks_symbols = [row[0] for row in cursor.fetchall()]
|
||||||
|
|
||||||
|
etf_cursor = etf_con.cursor()
|
||||||
|
etf_cursor.execute("PRAGMA journal_mode = wal")
|
||||||
|
etf_cursor.execute("SELECT DISTINCT symbol FROM etfs")
|
||||||
|
etf_symbols = [row[0] for row in etf_cursor.fetchall()]
|
||||||
|
|
||||||
|
con.close()
|
||||||
|
etf_con.close()
|
||||||
|
|
||||||
|
total_symbols = stocks_symbols #+ etf_symbols
|
||||||
|
|
||||||
|
async with aiohttp.ClientSession() as session:
|
||||||
|
tasks = []
|
||||||
|
for ticker in total_symbols:
|
||||||
|
tasks.append(process_ticker(ticker))
|
||||||
|
|
||||||
|
# Run tasks concurrently in batches to avoid too many open connections
|
||||||
|
batch_size = 10 # Adjust based on your system's capacity
|
||||||
|
for i in tqdm(range(0, len(tasks), batch_size)):
|
||||||
|
batch = tasks[i:i + batch_size]
|
||||||
|
await asyncio.gather(*batch)
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
try:
|
||||||
|
asyncio.run(run())
|
||||||
|
except Exception as e:
|
||||||
|
print(f"An error occurred: {e}")
|
||||||
17
app/main.py
17
app/main.py
@ -2854,6 +2854,23 @@ async def get_retail_volume(data:TickerData):
|
|||||||
except:
|
except:
|
||||||
res = {}
|
res = {}
|
||||||
|
|
||||||
|
redis_client.set(cache_key, ujson.dumps(res))
|
||||||
|
redis_client.expire(cache_key, 3600*3600) # Set cache expiration time to 1 day
|
||||||
|
return res
|
||||||
|
|
||||||
|
@app.post("/dark-pool")
|
||||||
|
async def get_dark_pool(data:TickerData):
|
||||||
|
ticker = data.ticker.upper()
|
||||||
|
cache_key = f"dark-pool-{ticker}"
|
||||||
|
cached_result = redis_client.get(cache_key)
|
||||||
|
if cached_result:
|
||||||
|
return ujson.loads(cached_result)
|
||||||
|
try:
|
||||||
|
with open(f"json/dark-pool/companies/{ticker}.json", 'r') as file:
|
||||||
|
res = ujson.load(file)
|
||||||
|
except:
|
||||||
|
res = []
|
||||||
|
|
||||||
redis_client.set(cache_key, ujson.dumps(res))
|
redis_client.set(cache_key, ujson.dumps(res))
|
||||||
redis_client.expire(cache_key, 3600*3600) # Set cache expiration time to 1 day
|
redis_client.expire(cache_key, 3600*3600) # Set cache expiration time to 1 day
|
||||||
return res
|
return res
|
||||||
@ -294,6 +294,17 @@ def run_restart_cache():
|
|||||||
subprocess.run(["pm2", "restart","fastify"])
|
subprocess.run(["pm2", "restart","fastify"])
|
||||||
#subprocess.run(["python3", "cache_endpoints.py"])
|
#subprocess.run(["python3", "cache_endpoints.py"])
|
||||||
|
|
||||||
|
def run_dark_pool():
|
||||||
|
week = datetime.today().weekday()
|
||||||
|
if week <= 5:
|
||||||
|
subprocess.run(["python3", "cron_dark_pool.py"])
|
||||||
|
command = [
|
||||||
|
"sudo", "rsync", "-avz", "-e", "ssh",
|
||||||
|
"/root/backend/app/json/dark-pool",
|
||||||
|
f"root@{useast_ip_address}:/root/backend/app/json"
|
||||||
|
]
|
||||||
|
subprocess.run(command)
|
||||||
|
|
||||||
# Create functions to run each schedule in a separate thread
|
# Create functions to run each schedule in a separate thread
|
||||||
def run_threaded(job_func):
|
def run_threaded(job_func):
|
||||||
job_thread = threading.Thread(target=job_func)
|
job_thread = threading.Thread(target=job_func)
|
||||||
@ -303,6 +314,7 @@ def run_threaded(job_func):
|
|||||||
|
|
||||||
schedule.every().day.at("01:00").do(run_threaded, run_options_bubble_ticker).tag('options_ticker_job')
|
schedule.every().day.at("01:00").do(run_threaded, run_options_bubble_ticker).tag('options_ticker_job')
|
||||||
schedule.every().day.at("02:00").do(run_threaded, run_db_schedule_job)
|
schedule.every().day.at("02:00").do(run_threaded, run_db_schedule_job)
|
||||||
|
schedule.every().day.at("03:00").do(run_threaded, run_dark_pool)
|
||||||
schedule.every().day.at("06:00").do(run_threaded, run_historical_price).tag('historical_job')
|
schedule.every().day.at("06:00").do(run_threaded, run_historical_price).tag('historical_job')
|
||||||
schedule.every().day.at("07:00").do(run_threaded, run_ta_rating).tag('ta_rating_job')
|
schedule.every().day.at("07:00").do(run_threaded, run_ta_rating).tag('ta_rating_job')
|
||||||
schedule.every().day.at("08:00").do(run_threaded, run_cron_insider_trading).tag('insider_trading_job')
|
schedule.every().day.at("08:00").do(run_threaded, run_cron_insider_trading).tag('insider_trading_job')
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user