Skip to content

lkeanfei/cryptobackend

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

53 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CREATE OR REPLACE VIEW cryptoanalysis.TechnicalsAvailableMarkets AS SELECT DISTINCT(exchange) from cryptoanalysis.technicals

CREATE OR REPLACE VIEW cryptoanalysis.TechnicalsAvailableCoinPairs AS SELECT DISTINCT(coinpair) from cryptoanalysis.technicals order by coinpair

use cryptoanalysis; CREATE OR REPLACE VIEW cryptoanalysis.GeckoFundamentalsView AS SELECT gf.startTime , gf.coinid , gf.BlockTime, gf.Developer , gf.Community , gf.Liquidity, gf.PublicInterest , gc.description ,gc.small_img_url , gc.thumb_img_url from cryptoanalysis.GeckoFundamentals as gf INNER Join GeckoCoin as gc on gc.id = gf.coinid

use cryptoanalysis; CREATE OR REPLACE VIEW cryptoanalysis.HourlyDataTechnicalsView AS SELECT hd.startTime, hd.market, hd.coinpair , hd.open, hd.high , hd.low, hd.close, hd.volume, technicals.pricechangepct , technicals.unusualvolume , technicals.macdindicator from cryptoanalysis.HourlyData as hd INNER JOIN technicals as technicals on hd.startTime = technicals.startTime and hd.market = technicals.exchange and hd.coinpair = technicals.coinpair

python manage.py inspectdb > 2May2019.model.py

python manage.py inspectdb Rolling48hMetrics > Rolling48hMetrics.model.py

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published