├── .gitignore ├── LICENSE ├── README.md ├── client ├── .gitignore ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt └── src │ ├── App.js │ ├── App.test.js │ ├── assets │ ├── forex_broken_link.jpg │ └── home_background.jpg │ ├── components │ ├── ExchangeRate │ │ └── ExchangeRate.js │ ├── Inference │ │ └── Inference.js │ ├── MarketNews │ │ ├── MarketNews.js │ │ └── NewsCard.js │ ├── NavigationMenu │ │ └── NavigationMenu.js │ ├── Quote │ │ ├── EmptyQuote.js │ │ └── Quote.js │ ├── QuoteSelector │ │ └── QuoteSelector.js │ ├── SelectIndicatorModal │ │ └── SelectIndicatorModal.js │ └── Technical_Indicators │ │ ├── Bollinger_Band.js │ │ ├── Ema.js │ │ ├── Macd.js │ │ ├── Rsi.js │ │ └── Stochastic.js │ ├── index.css │ ├── index.js │ ├── logo.svg │ ├── pages │ ├── CalendarPage.js │ ├── HomePage.css │ ├── HomePage.js │ ├── NewsPage.js │ └── QuotesPage.js │ ├── reportWebVitals.js │ ├── setupTests.js │ └── utils │ ├── arrayUtils.js │ ├── parseObjectUtils.js │ ├── useWindowDimensions.js │ └── websocketMessage.js ├── deploy_sam.sh ├── images ├── architecture_diagram.png ├── exchange_rate.png ├── forecast.png ├── home_page.png └── news.png ├── lambda ├── prediction-lambda │ └── handler │ │ ├── Dockerfile │ │ ├── analysis_dataframe.py │ │ ├── app.py │ │ ├── connections.py │ │ ├── models │ │ ├── AUDCAD │ │ │ ├── saved_model.pb │ │ │ └── variables │ │ │ │ ├── variables.data-00000-of-00001 │ │ │ │ └── variables.index │ │ ├── EURUSD │ │ │ ├── saved_model.pb │ │ │ └── variables │ │ │ │ ├── variables.data-00000-of-00001 │ │ │ │ └── variables.index │ │ ├── GBPUSD │ │ │ ├── saved_model.pb │ │ │ └── variables │ │ │ │ ├── variables.data-00000-of-00001 │ │ │ │ └── variables.index │ │ └── USDJPY │ │ │ ├── saved_model.pb │ │ │ └── variables │ │ │ ├── variables.data-00000-of-00001 │ │ │ └── variables.index │ │ ├── predict.py │ │ ├── preprocessing.py │ │ ├── requirements.txt │ │ ├── scalers │ │ ├── AUDCAD │ │ │ ├── close.bin │ │ │ └── features.bin │ │ ├── EURUSD │ │ │ ├── close.bin │ │ │ └── features.bin │ │ ├── GBPUSD │ │ │ ├── close.bin │ │ │ └── features.bin │ │ └── USDJPY │ │ │ ├── close.bin │ │ │ └── features.bin │ │ ├── sentiment_keyword_defs.py │ │ ├── store.py │ │ ├── technical_indicators.py │ │ └── twitter_sentiment.py ├── technical-analysis-lambda │ ├── Dockerfile │ ├── exchangerate │ │ ├── exchange_rate.go │ │ ├── forex_client.go │ │ ├── latest_news.go │ │ ├── latest_news_test.go │ │ ├── latest_rate.go │ │ └── latest_rate_test.go │ ├── finance │ │ ├── connection.go │ │ ├── financial_data.go │ │ ├── get_news_headline.go │ │ ├── get_news_headline_test.go │ │ ├── update_symbol.go │ │ └── update_symbol_test.go │ ├── go.mod │ ├── go.sum │ ├── main.go │ └── websocket │ │ ├── broadcast_market_news.go │ │ ├── broadcast_market_news_test.go │ │ ├── broadcast_symbol_rate.go │ │ ├── broadcast_symbol_rate_test.go │ │ ├── callback_message.go │ │ └── read_connections.go ├── template.yaml └── websocket-server-lambda │ ├── Dockerfile │ ├── broadcast │ ├── callback_message.go │ ├── create_callback.go │ ├── create_callback_test.go │ ├── exchange_rate.go │ ├── exchange_rate_test.go │ ├── inference.go │ ├── inference_test.go │ ├── market_news.go │ ├── market_news_test.go │ └── pool.go │ ├── connection │ ├── connection.go │ ├── handle_connect.go │ └── handle_disconnect.go │ ├── go.mod │ ├── go.sum │ ├── main.go │ └── subscription │ ├── handle_subscription.go │ ├── handle_subscription_test.go │ ├── subscription_message.go │ ├── subscription_permissions.go │ └── subscription_permissions_test.go ├── prediction_service ├── generate_economic_indicator.py ├── generate_technical_indicators.py ├── generate_twitter_sentiment.py ├── inference.py ├── lstm_model │ ├── data │ │ ├── external │ │ │ ├── cpi │ │ │ │ ├── AUD_CPI_2018-2020.csv │ │ │ │ ├── CPI_2018-2020.csv │ │ │ │ └── NZD_CPI_2018-2020.csv │ │ │ ├── gdp │ │ │ │ └── GDP_2018-2020.csv │ │ │ ├── interest_rates │ │ │ │ └── Interest_rates_2018-2020.csv │ │ │ ├── ppi │ │ │ │ ├── AUD_PPI_2018-2020.csv │ │ │ │ ├── CAD_PPI_2018-2020.csv │ │ │ │ ├── NZD_PPI_2018-2020.csv │ │ │ │ ├── PPI_2018-2020.csv │ │ │ │ └── USD_PPI_2018-2020.csv │ │ │ └── unemployment │ │ │ │ ├── CHF_Unemployment_2018-2020.csv │ │ │ │ ├── NZD_Unemployment_2018-2020.csv │ │ │ │ └── Unemployment_2018-2020.csv │ │ └── raw │ │ │ ├── news │ │ │ ├── dailyfx_historical.json │ │ │ ├── forexlive_historical.json │ │ │ └── reuters_historical.json │ │ │ └── tweets │ │ │ ├── FTMarkets_historical.json │ │ │ ├── FXstreetNews2_historical.json │ │ │ ├── FXstreetNews_historical.json │ │ │ ├── ReutersGMF_historical.json │ │ │ ├── WSJmarkets_historical.json │ │ │ ├── forexcom_historical.json │ │ │ └── markets_historical.json │ ├── models │ │ ├── AUDCAD │ │ │ ├── saved_model.pb │ │ │ └── variables │ │ │ │ ├── variables.data-00000-of-00001 │ │ │ │ └── variables.index │ │ ├── EURUSD │ │ │ ├── saved_model.pb │ │ │ └── variables │ │ │ │ ├── variables.data-00000-of-00001 │ │ │ │ └── variables.index │ │ ├── GBPUSD │ │ │ ├── saved_model.pb │ │ │ └── variables │ │ │ │ ├── variables.data-00000-of-00001 │ │ │ │ └── variables.index │ │ └── USDJPY │ │ │ ├── saved_model.pb │ │ │ └── variables │ │ │ ├── variables.data-00000-of-00001 │ │ │ └── variables.index │ ├── notebooks │ │ ├── Model Hypertuning.ipynb │ │ ├── Test Model.ipynb │ │ └── Train Model.ipynb │ ├── scalers │ │ ├── AUDCAD │ │ │ ├── close.bin │ │ │ └── features.bin │ │ ├── EURUSD │ │ │ ├── close.bin │ │ │ └── features.bin │ │ ├── GBPUSD │ │ │ ├── close.bin │ │ │ └── features.bin │ │ └── USDJPY │ │ │ ├── close.bin │ │ │ └── features.bin │ └── src │ │ ├── data │ │ ├── cpi_indicator.py │ │ ├── gdp_indicator.py │ │ └── interest_rate_indicator.py │ │ ├── features │ │ ├── exchange_rate_indicator.py │ │ ├── news_sentiment.py │ │ └── twitter_sentiment.py │ │ ├── model │ │ ├── test_model.py │ │ └── train_model.py │ │ ├── preprocess.py │ │ └── utils │ │ └── model_utils.py ├── requirements.txt ├── sentiment_keyword_defs.py └── series_id_defs.py ├── requirements.txt └── scraper ├── forex_webscraper ├── __init__.py ├── items.py ├── middlewares.py ├── pipelines.py ├── settings.py └── spiders │ ├── __init__.py │ ├── dailyfx_webscraper.py │ ├── forexlive_webscraper.py │ ├── reuters_webscraper.py │ └── twitter_webscraper.py └── scrapy.cfg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/README.md -------------------------------------------------------------------------------- /client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/client/.gitignore -------------------------------------------------------------------------------- /client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/client/package-lock.json -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/client/package.json -------------------------------------------------------------------------------- /client/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/client/public/favicon.ico -------------------------------------------------------------------------------- /client/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/client/public/index.html -------------------------------------------------------------------------------- /client/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/client/public/logo192.png -------------------------------------------------------------------------------- /client/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/client/public/logo512.png -------------------------------------------------------------------------------- /client/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/client/public/manifest.json -------------------------------------------------------------------------------- /client/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/client/public/robots.txt -------------------------------------------------------------------------------- /client/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/client/src/App.js -------------------------------------------------------------------------------- /client/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/client/src/App.test.js -------------------------------------------------------------------------------- /client/src/assets/forex_broken_link.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/client/src/assets/forex_broken_link.jpg -------------------------------------------------------------------------------- /client/src/assets/home_background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/client/src/assets/home_background.jpg -------------------------------------------------------------------------------- /client/src/components/ExchangeRate/ExchangeRate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/client/src/components/ExchangeRate/ExchangeRate.js -------------------------------------------------------------------------------- /client/src/components/Inference/Inference.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/client/src/components/Inference/Inference.js -------------------------------------------------------------------------------- /client/src/components/MarketNews/MarketNews.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/client/src/components/MarketNews/MarketNews.js -------------------------------------------------------------------------------- /client/src/components/MarketNews/NewsCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/client/src/components/MarketNews/NewsCard.js -------------------------------------------------------------------------------- /client/src/components/NavigationMenu/NavigationMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/client/src/components/NavigationMenu/NavigationMenu.js -------------------------------------------------------------------------------- /client/src/components/Quote/EmptyQuote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/client/src/components/Quote/EmptyQuote.js -------------------------------------------------------------------------------- /client/src/components/Quote/Quote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/client/src/components/Quote/Quote.js -------------------------------------------------------------------------------- /client/src/components/QuoteSelector/QuoteSelector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/client/src/components/QuoteSelector/QuoteSelector.js -------------------------------------------------------------------------------- /client/src/components/SelectIndicatorModal/SelectIndicatorModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/client/src/components/SelectIndicatorModal/SelectIndicatorModal.js -------------------------------------------------------------------------------- /client/src/components/Technical_Indicators/Bollinger_Band.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/client/src/components/Technical_Indicators/Bollinger_Band.js -------------------------------------------------------------------------------- /client/src/components/Technical_Indicators/Ema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/client/src/components/Technical_Indicators/Ema.js -------------------------------------------------------------------------------- /client/src/components/Technical_Indicators/Macd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/client/src/components/Technical_Indicators/Macd.js -------------------------------------------------------------------------------- /client/src/components/Technical_Indicators/Rsi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/client/src/components/Technical_Indicators/Rsi.js -------------------------------------------------------------------------------- /client/src/components/Technical_Indicators/Stochastic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/client/src/components/Technical_Indicators/Stochastic.js -------------------------------------------------------------------------------- /client/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/client/src/index.css -------------------------------------------------------------------------------- /client/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/client/src/index.js -------------------------------------------------------------------------------- /client/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/client/src/logo.svg -------------------------------------------------------------------------------- /client/src/pages/CalendarPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/client/src/pages/CalendarPage.js -------------------------------------------------------------------------------- /client/src/pages/HomePage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/client/src/pages/HomePage.css -------------------------------------------------------------------------------- /client/src/pages/HomePage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/client/src/pages/HomePage.js -------------------------------------------------------------------------------- /client/src/pages/NewsPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/client/src/pages/NewsPage.js -------------------------------------------------------------------------------- /client/src/pages/QuotesPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/client/src/pages/QuotesPage.js -------------------------------------------------------------------------------- /client/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/client/src/reportWebVitals.js -------------------------------------------------------------------------------- /client/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/client/src/setupTests.js -------------------------------------------------------------------------------- /client/src/utils/arrayUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/client/src/utils/arrayUtils.js -------------------------------------------------------------------------------- /client/src/utils/parseObjectUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/client/src/utils/parseObjectUtils.js -------------------------------------------------------------------------------- /client/src/utils/useWindowDimensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/client/src/utils/useWindowDimensions.js -------------------------------------------------------------------------------- /client/src/utils/websocketMessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/client/src/utils/websocketMessage.js -------------------------------------------------------------------------------- /deploy_sam.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/deploy_sam.sh -------------------------------------------------------------------------------- /images/architecture_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/images/architecture_diagram.png -------------------------------------------------------------------------------- /images/exchange_rate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/images/exchange_rate.png -------------------------------------------------------------------------------- /images/forecast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/images/forecast.png -------------------------------------------------------------------------------- /images/home_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/images/home_page.png -------------------------------------------------------------------------------- /images/news.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/images/news.png -------------------------------------------------------------------------------- /lambda/prediction-lambda/handler/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/lambda/prediction-lambda/handler/Dockerfile -------------------------------------------------------------------------------- /lambda/prediction-lambda/handler/analysis_dataframe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/lambda/prediction-lambda/handler/analysis_dataframe.py -------------------------------------------------------------------------------- /lambda/prediction-lambda/handler/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/lambda/prediction-lambda/handler/app.py -------------------------------------------------------------------------------- /lambda/prediction-lambda/handler/connections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/lambda/prediction-lambda/handler/connections.py -------------------------------------------------------------------------------- /lambda/prediction-lambda/handler/models/AUDCAD/saved_model.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/lambda/prediction-lambda/handler/models/AUDCAD/saved_model.pb -------------------------------------------------------------------------------- /lambda/prediction-lambda/handler/models/AUDCAD/variables/variables.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/lambda/prediction-lambda/handler/models/AUDCAD/variables/variables.data-00000-of-00001 -------------------------------------------------------------------------------- /lambda/prediction-lambda/handler/models/AUDCAD/variables/variables.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/lambda/prediction-lambda/handler/models/AUDCAD/variables/variables.index -------------------------------------------------------------------------------- /lambda/prediction-lambda/handler/models/EURUSD/saved_model.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/lambda/prediction-lambda/handler/models/EURUSD/saved_model.pb -------------------------------------------------------------------------------- /lambda/prediction-lambda/handler/models/EURUSD/variables/variables.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/lambda/prediction-lambda/handler/models/EURUSD/variables/variables.data-00000-of-00001 -------------------------------------------------------------------------------- /lambda/prediction-lambda/handler/models/EURUSD/variables/variables.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/lambda/prediction-lambda/handler/models/EURUSD/variables/variables.index -------------------------------------------------------------------------------- /lambda/prediction-lambda/handler/models/GBPUSD/saved_model.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/lambda/prediction-lambda/handler/models/GBPUSD/saved_model.pb -------------------------------------------------------------------------------- /lambda/prediction-lambda/handler/models/GBPUSD/variables/variables.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/lambda/prediction-lambda/handler/models/GBPUSD/variables/variables.data-00000-of-00001 -------------------------------------------------------------------------------- /lambda/prediction-lambda/handler/models/GBPUSD/variables/variables.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/lambda/prediction-lambda/handler/models/GBPUSD/variables/variables.index -------------------------------------------------------------------------------- /lambda/prediction-lambda/handler/models/USDJPY/saved_model.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/lambda/prediction-lambda/handler/models/USDJPY/saved_model.pb -------------------------------------------------------------------------------- /lambda/prediction-lambda/handler/models/USDJPY/variables/variables.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/lambda/prediction-lambda/handler/models/USDJPY/variables/variables.data-00000-of-00001 -------------------------------------------------------------------------------- /lambda/prediction-lambda/handler/models/USDJPY/variables/variables.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/lambda/prediction-lambda/handler/models/USDJPY/variables/variables.index -------------------------------------------------------------------------------- /lambda/prediction-lambda/handler/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/lambda/prediction-lambda/handler/predict.py -------------------------------------------------------------------------------- /lambda/prediction-lambda/handler/preprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/lambda/prediction-lambda/handler/preprocessing.py -------------------------------------------------------------------------------- /lambda/prediction-lambda/handler/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/lambda/prediction-lambda/handler/requirements.txt -------------------------------------------------------------------------------- /lambda/prediction-lambda/handler/scalers/AUDCAD/close.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/lambda/prediction-lambda/handler/scalers/AUDCAD/close.bin -------------------------------------------------------------------------------- /lambda/prediction-lambda/handler/scalers/AUDCAD/features.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/lambda/prediction-lambda/handler/scalers/AUDCAD/features.bin -------------------------------------------------------------------------------- /lambda/prediction-lambda/handler/scalers/EURUSD/close.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/lambda/prediction-lambda/handler/scalers/EURUSD/close.bin -------------------------------------------------------------------------------- /lambda/prediction-lambda/handler/scalers/EURUSD/features.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/lambda/prediction-lambda/handler/scalers/EURUSD/features.bin -------------------------------------------------------------------------------- /lambda/prediction-lambda/handler/scalers/GBPUSD/close.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/lambda/prediction-lambda/handler/scalers/GBPUSD/close.bin -------------------------------------------------------------------------------- /lambda/prediction-lambda/handler/scalers/GBPUSD/features.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/lambda/prediction-lambda/handler/scalers/GBPUSD/features.bin -------------------------------------------------------------------------------- /lambda/prediction-lambda/handler/scalers/USDJPY/close.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/lambda/prediction-lambda/handler/scalers/USDJPY/close.bin -------------------------------------------------------------------------------- /lambda/prediction-lambda/handler/scalers/USDJPY/features.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/lambda/prediction-lambda/handler/scalers/USDJPY/features.bin -------------------------------------------------------------------------------- /lambda/prediction-lambda/handler/sentiment_keyword_defs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/lambda/prediction-lambda/handler/sentiment_keyword_defs.py -------------------------------------------------------------------------------- /lambda/prediction-lambda/handler/store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/lambda/prediction-lambda/handler/store.py -------------------------------------------------------------------------------- /lambda/prediction-lambda/handler/technical_indicators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/lambda/prediction-lambda/handler/technical_indicators.py -------------------------------------------------------------------------------- /lambda/prediction-lambda/handler/twitter_sentiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/lambda/prediction-lambda/handler/twitter_sentiment.py -------------------------------------------------------------------------------- /lambda/technical-analysis-lambda/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/lambda/technical-analysis-lambda/Dockerfile -------------------------------------------------------------------------------- /lambda/technical-analysis-lambda/exchangerate/exchange_rate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/lambda/technical-analysis-lambda/exchangerate/exchange_rate.go -------------------------------------------------------------------------------- /lambda/technical-analysis-lambda/exchangerate/forex_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/lambda/technical-analysis-lambda/exchangerate/forex_client.go -------------------------------------------------------------------------------- /lambda/technical-analysis-lambda/exchangerate/latest_news.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/lambda/technical-analysis-lambda/exchangerate/latest_news.go -------------------------------------------------------------------------------- /lambda/technical-analysis-lambda/exchangerate/latest_news_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/lambda/technical-analysis-lambda/exchangerate/latest_news_test.go -------------------------------------------------------------------------------- /lambda/technical-analysis-lambda/exchangerate/latest_rate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/lambda/technical-analysis-lambda/exchangerate/latest_rate.go -------------------------------------------------------------------------------- /lambda/technical-analysis-lambda/exchangerate/latest_rate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/lambda/technical-analysis-lambda/exchangerate/latest_rate_test.go -------------------------------------------------------------------------------- /lambda/technical-analysis-lambda/finance/connection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/lambda/technical-analysis-lambda/finance/connection.go -------------------------------------------------------------------------------- /lambda/technical-analysis-lambda/finance/financial_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/lambda/technical-analysis-lambda/finance/financial_data.go -------------------------------------------------------------------------------- /lambda/technical-analysis-lambda/finance/get_news_headline.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/lambda/technical-analysis-lambda/finance/get_news_headline.go -------------------------------------------------------------------------------- /lambda/technical-analysis-lambda/finance/get_news_headline_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/lambda/technical-analysis-lambda/finance/get_news_headline_test.go -------------------------------------------------------------------------------- /lambda/technical-analysis-lambda/finance/update_symbol.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/lambda/technical-analysis-lambda/finance/update_symbol.go -------------------------------------------------------------------------------- /lambda/technical-analysis-lambda/finance/update_symbol_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/lambda/technical-analysis-lambda/finance/update_symbol_test.go -------------------------------------------------------------------------------- /lambda/technical-analysis-lambda/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/lambda/technical-analysis-lambda/go.mod -------------------------------------------------------------------------------- /lambda/technical-analysis-lambda/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/lambda/technical-analysis-lambda/go.sum -------------------------------------------------------------------------------- /lambda/technical-analysis-lambda/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/lambda/technical-analysis-lambda/main.go -------------------------------------------------------------------------------- /lambda/technical-analysis-lambda/websocket/broadcast_market_news.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/lambda/technical-analysis-lambda/websocket/broadcast_market_news.go -------------------------------------------------------------------------------- /lambda/technical-analysis-lambda/websocket/broadcast_market_news_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/lambda/technical-analysis-lambda/websocket/broadcast_market_news_test.go -------------------------------------------------------------------------------- /lambda/technical-analysis-lambda/websocket/broadcast_symbol_rate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/lambda/technical-analysis-lambda/websocket/broadcast_symbol_rate.go -------------------------------------------------------------------------------- /lambda/technical-analysis-lambda/websocket/broadcast_symbol_rate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/lambda/technical-analysis-lambda/websocket/broadcast_symbol_rate_test.go -------------------------------------------------------------------------------- /lambda/technical-analysis-lambda/websocket/callback_message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/lambda/technical-analysis-lambda/websocket/callback_message.go -------------------------------------------------------------------------------- /lambda/technical-analysis-lambda/websocket/read_connections.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/lambda/technical-analysis-lambda/websocket/read_connections.go -------------------------------------------------------------------------------- /lambda/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/lambda/template.yaml -------------------------------------------------------------------------------- /lambda/websocket-server-lambda/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/lambda/websocket-server-lambda/Dockerfile -------------------------------------------------------------------------------- /lambda/websocket-server-lambda/broadcast/callback_message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/lambda/websocket-server-lambda/broadcast/callback_message.go -------------------------------------------------------------------------------- /lambda/websocket-server-lambda/broadcast/create_callback.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/lambda/websocket-server-lambda/broadcast/create_callback.go -------------------------------------------------------------------------------- /lambda/websocket-server-lambda/broadcast/create_callback_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/lambda/websocket-server-lambda/broadcast/create_callback_test.go -------------------------------------------------------------------------------- /lambda/websocket-server-lambda/broadcast/exchange_rate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/lambda/websocket-server-lambda/broadcast/exchange_rate.go -------------------------------------------------------------------------------- /lambda/websocket-server-lambda/broadcast/exchange_rate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/lambda/websocket-server-lambda/broadcast/exchange_rate_test.go -------------------------------------------------------------------------------- /lambda/websocket-server-lambda/broadcast/inference.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/lambda/websocket-server-lambda/broadcast/inference.go -------------------------------------------------------------------------------- /lambda/websocket-server-lambda/broadcast/inference_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/lambda/websocket-server-lambda/broadcast/inference_test.go -------------------------------------------------------------------------------- /lambda/websocket-server-lambda/broadcast/market_news.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/lambda/websocket-server-lambda/broadcast/market_news.go -------------------------------------------------------------------------------- /lambda/websocket-server-lambda/broadcast/market_news_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/lambda/websocket-server-lambda/broadcast/market_news_test.go -------------------------------------------------------------------------------- /lambda/websocket-server-lambda/broadcast/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/lambda/websocket-server-lambda/broadcast/pool.go -------------------------------------------------------------------------------- /lambda/websocket-server-lambda/connection/connection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/lambda/websocket-server-lambda/connection/connection.go -------------------------------------------------------------------------------- /lambda/websocket-server-lambda/connection/handle_connect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/lambda/websocket-server-lambda/connection/handle_connect.go -------------------------------------------------------------------------------- /lambda/websocket-server-lambda/connection/handle_disconnect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/lambda/websocket-server-lambda/connection/handle_disconnect.go -------------------------------------------------------------------------------- /lambda/websocket-server-lambda/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/lambda/websocket-server-lambda/go.mod -------------------------------------------------------------------------------- /lambda/websocket-server-lambda/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/lambda/websocket-server-lambda/go.sum -------------------------------------------------------------------------------- /lambda/websocket-server-lambda/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/lambda/websocket-server-lambda/main.go -------------------------------------------------------------------------------- /lambda/websocket-server-lambda/subscription/handle_subscription.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/lambda/websocket-server-lambda/subscription/handle_subscription.go -------------------------------------------------------------------------------- /lambda/websocket-server-lambda/subscription/handle_subscription_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/lambda/websocket-server-lambda/subscription/handle_subscription_test.go -------------------------------------------------------------------------------- /lambda/websocket-server-lambda/subscription/subscription_message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/lambda/websocket-server-lambda/subscription/subscription_message.go -------------------------------------------------------------------------------- /lambda/websocket-server-lambda/subscription/subscription_permissions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/lambda/websocket-server-lambda/subscription/subscription_permissions.go -------------------------------------------------------------------------------- /lambda/websocket-server-lambda/subscription/subscription_permissions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/lambda/websocket-server-lambda/subscription/subscription_permissions_test.go -------------------------------------------------------------------------------- /prediction_service/generate_economic_indicator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/prediction_service/generate_economic_indicator.py -------------------------------------------------------------------------------- /prediction_service/generate_technical_indicators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/prediction_service/generate_technical_indicators.py -------------------------------------------------------------------------------- /prediction_service/generate_twitter_sentiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/prediction_service/generate_twitter_sentiment.py -------------------------------------------------------------------------------- /prediction_service/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/prediction_service/inference.py -------------------------------------------------------------------------------- /prediction_service/lstm_model/data/external/cpi/AUD_CPI_2018-2020.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/prediction_service/lstm_model/data/external/cpi/AUD_CPI_2018-2020.csv -------------------------------------------------------------------------------- /prediction_service/lstm_model/data/external/cpi/CPI_2018-2020.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/prediction_service/lstm_model/data/external/cpi/CPI_2018-2020.csv -------------------------------------------------------------------------------- /prediction_service/lstm_model/data/external/cpi/NZD_CPI_2018-2020.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/prediction_service/lstm_model/data/external/cpi/NZD_CPI_2018-2020.csv -------------------------------------------------------------------------------- /prediction_service/lstm_model/data/external/gdp/GDP_2018-2020.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/prediction_service/lstm_model/data/external/gdp/GDP_2018-2020.csv -------------------------------------------------------------------------------- /prediction_service/lstm_model/data/external/interest_rates/Interest_rates_2018-2020.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/prediction_service/lstm_model/data/external/interest_rates/Interest_rates_2018-2020.csv -------------------------------------------------------------------------------- /prediction_service/lstm_model/data/external/ppi/AUD_PPI_2018-2020.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/prediction_service/lstm_model/data/external/ppi/AUD_PPI_2018-2020.csv -------------------------------------------------------------------------------- /prediction_service/lstm_model/data/external/ppi/CAD_PPI_2018-2020.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/prediction_service/lstm_model/data/external/ppi/CAD_PPI_2018-2020.csv -------------------------------------------------------------------------------- /prediction_service/lstm_model/data/external/ppi/NZD_PPI_2018-2020.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/prediction_service/lstm_model/data/external/ppi/NZD_PPI_2018-2020.csv -------------------------------------------------------------------------------- /prediction_service/lstm_model/data/external/ppi/PPI_2018-2020.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/prediction_service/lstm_model/data/external/ppi/PPI_2018-2020.csv -------------------------------------------------------------------------------- /prediction_service/lstm_model/data/external/ppi/USD_PPI_2018-2020.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/prediction_service/lstm_model/data/external/ppi/USD_PPI_2018-2020.csv -------------------------------------------------------------------------------- /prediction_service/lstm_model/data/external/unemployment/CHF_Unemployment_2018-2020.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/prediction_service/lstm_model/data/external/unemployment/CHF_Unemployment_2018-2020.csv -------------------------------------------------------------------------------- /prediction_service/lstm_model/data/external/unemployment/NZD_Unemployment_2018-2020.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/prediction_service/lstm_model/data/external/unemployment/NZD_Unemployment_2018-2020.csv -------------------------------------------------------------------------------- /prediction_service/lstm_model/data/external/unemployment/Unemployment_2018-2020.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/prediction_service/lstm_model/data/external/unemployment/Unemployment_2018-2020.csv -------------------------------------------------------------------------------- /prediction_service/lstm_model/data/raw/news/dailyfx_historical.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/prediction_service/lstm_model/data/raw/news/dailyfx_historical.json -------------------------------------------------------------------------------- /prediction_service/lstm_model/data/raw/news/forexlive_historical.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/prediction_service/lstm_model/data/raw/news/forexlive_historical.json -------------------------------------------------------------------------------- /prediction_service/lstm_model/data/raw/news/reuters_historical.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/prediction_service/lstm_model/data/raw/news/reuters_historical.json -------------------------------------------------------------------------------- /prediction_service/lstm_model/data/raw/tweets/FTMarkets_historical.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/prediction_service/lstm_model/data/raw/tweets/FTMarkets_historical.json -------------------------------------------------------------------------------- /prediction_service/lstm_model/data/raw/tweets/FXstreetNews2_historical.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/prediction_service/lstm_model/data/raw/tweets/FXstreetNews2_historical.json -------------------------------------------------------------------------------- /prediction_service/lstm_model/data/raw/tweets/FXstreetNews_historical.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/prediction_service/lstm_model/data/raw/tweets/FXstreetNews_historical.json -------------------------------------------------------------------------------- /prediction_service/lstm_model/data/raw/tweets/ReutersGMF_historical.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/prediction_service/lstm_model/data/raw/tweets/ReutersGMF_historical.json -------------------------------------------------------------------------------- /prediction_service/lstm_model/data/raw/tweets/WSJmarkets_historical.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/prediction_service/lstm_model/data/raw/tweets/WSJmarkets_historical.json -------------------------------------------------------------------------------- /prediction_service/lstm_model/data/raw/tweets/forexcom_historical.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/prediction_service/lstm_model/data/raw/tweets/forexcom_historical.json -------------------------------------------------------------------------------- /prediction_service/lstm_model/data/raw/tweets/markets_historical.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/prediction_service/lstm_model/data/raw/tweets/markets_historical.json -------------------------------------------------------------------------------- /prediction_service/lstm_model/models/AUDCAD/saved_model.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/prediction_service/lstm_model/models/AUDCAD/saved_model.pb -------------------------------------------------------------------------------- /prediction_service/lstm_model/models/AUDCAD/variables/variables.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/prediction_service/lstm_model/models/AUDCAD/variables/variables.data-00000-of-00001 -------------------------------------------------------------------------------- /prediction_service/lstm_model/models/AUDCAD/variables/variables.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/prediction_service/lstm_model/models/AUDCAD/variables/variables.index -------------------------------------------------------------------------------- /prediction_service/lstm_model/models/EURUSD/saved_model.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/prediction_service/lstm_model/models/EURUSD/saved_model.pb -------------------------------------------------------------------------------- /prediction_service/lstm_model/models/EURUSD/variables/variables.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/prediction_service/lstm_model/models/EURUSD/variables/variables.data-00000-of-00001 -------------------------------------------------------------------------------- /prediction_service/lstm_model/models/EURUSD/variables/variables.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/prediction_service/lstm_model/models/EURUSD/variables/variables.index -------------------------------------------------------------------------------- /prediction_service/lstm_model/models/GBPUSD/saved_model.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/prediction_service/lstm_model/models/GBPUSD/saved_model.pb -------------------------------------------------------------------------------- /prediction_service/lstm_model/models/GBPUSD/variables/variables.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/prediction_service/lstm_model/models/GBPUSD/variables/variables.data-00000-of-00001 -------------------------------------------------------------------------------- /prediction_service/lstm_model/models/GBPUSD/variables/variables.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/prediction_service/lstm_model/models/GBPUSD/variables/variables.index -------------------------------------------------------------------------------- /prediction_service/lstm_model/models/USDJPY/saved_model.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/prediction_service/lstm_model/models/USDJPY/saved_model.pb -------------------------------------------------------------------------------- /prediction_service/lstm_model/models/USDJPY/variables/variables.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/prediction_service/lstm_model/models/USDJPY/variables/variables.data-00000-of-00001 -------------------------------------------------------------------------------- /prediction_service/lstm_model/models/USDJPY/variables/variables.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/prediction_service/lstm_model/models/USDJPY/variables/variables.index -------------------------------------------------------------------------------- /prediction_service/lstm_model/notebooks/Model Hypertuning.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/prediction_service/lstm_model/notebooks/Model Hypertuning.ipynb -------------------------------------------------------------------------------- /prediction_service/lstm_model/notebooks/Test Model.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/prediction_service/lstm_model/notebooks/Test Model.ipynb -------------------------------------------------------------------------------- /prediction_service/lstm_model/notebooks/Train Model.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/prediction_service/lstm_model/notebooks/Train Model.ipynb -------------------------------------------------------------------------------- /prediction_service/lstm_model/scalers/AUDCAD/close.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/prediction_service/lstm_model/scalers/AUDCAD/close.bin -------------------------------------------------------------------------------- /prediction_service/lstm_model/scalers/AUDCAD/features.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/prediction_service/lstm_model/scalers/AUDCAD/features.bin -------------------------------------------------------------------------------- /prediction_service/lstm_model/scalers/EURUSD/close.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/prediction_service/lstm_model/scalers/EURUSD/close.bin -------------------------------------------------------------------------------- /prediction_service/lstm_model/scalers/EURUSD/features.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/prediction_service/lstm_model/scalers/EURUSD/features.bin -------------------------------------------------------------------------------- /prediction_service/lstm_model/scalers/GBPUSD/close.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/prediction_service/lstm_model/scalers/GBPUSD/close.bin -------------------------------------------------------------------------------- /prediction_service/lstm_model/scalers/GBPUSD/features.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/prediction_service/lstm_model/scalers/GBPUSD/features.bin -------------------------------------------------------------------------------- /prediction_service/lstm_model/scalers/USDJPY/close.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/prediction_service/lstm_model/scalers/USDJPY/close.bin -------------------------------------------------------------------------------- /prediction_service/lstm_model/scalers/USDJPY/features.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/prediction_service/lstm_model/scalers/USDJPY/features.bin -------------------------------------------------------------------------------- /prediction_service/lstm_model/src/data/cpi_indicator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/prediction_service/lstm_model/src/data/cpi_indicator.py -------------------------------------------------------------------------------- /prediction_service/lstm_model/src/data/gdp_indicator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/prediction_service/lstm_model/src/data/gdp_indicator.py -------------------------------------------------------------------------------- /prediction_service/lstm_model/src/data/interest_rate_indicator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/prediction_service/lstm_model/src/data/interest_rate_indicator.py -------------------------------------------------------------------------------- /prediction_service/lstm_model/src/features/exchange_rate_indicator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/prediction_service/lstm_model/src/features/exchange_rate_indicator.py -------------------------------------------------------------------------------- /prediction_service/lstm_model/src/features/news_sentiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/prediction_service/lstm_model/src/features/news_sentiment.py -------------------------------------------------------------------------------- /prediction_service/lstm_model/src/features/twitter_sentiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/prediction_service/lstm_model/src/features/twitter_sentiment.py -------------------------------------------------------------------------------- /prediction_service/lstm_model/src/model/test_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/prediction_service/lstm_model/src/model/test_model.py -------------------------------------------------------------------------------- /prediction_service/lstm_model/src/model/train_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/prediction_service/lstm_model/src/model/train_model.py -------------------------------------------------------------------------------- /prediction_service/lstm_model/src/preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/prediction_service/lstm_model/src/preprocess.py -------------------------------------------------------------------------------- /prediction_service/lstm_model/src/utils/model_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/prediction_service/lstm_model/src/utils/model_utils.py -------------------------------------------------------------------------------- /prediction_service/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/prediction_service/requirements.txt -------------------------------------------------------------------------------- /prediction_service/sentiment_keyword_defs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/prediction_service/sentiment_keyword_defs.py -------------------------------------------------------------------------------- /prediction_service/series_id_defs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/prediction_service/series_id_defs.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/requirements.txt -------------------------------------------------------------------------------- /scraper/forex_webscraper/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scraper/forex_webscraper/items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/scraper/forex_webscraper/items.py -------------------------------------------------------------------------------- /scraper/forex_webscraper/middlewares.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/scraper/forex_webscraper/middlewares.py -------------------------------------------------------------------------------- /scraper/forex_webscraper/pipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/scraper/forex_webscraper/pipelines.py -------------------------------------------------------------------------------- /scraper/forex_webscraper/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/scraper/forex_webscraper/settings.py -------------------------------------------------------------------------------- /scraper/forex_webscraper/spiders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/scraper/forex_webscraper/spiders/__init__.py -------------------------------------------------------------------------------- /scraper/forex_webscraper/spiders/dailyfx_webscraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/scraper/forex_webscraper/spiders/dailyfx_webscraper.py -------------------------------------------------------------------------------- /scraper/forex_webscraper/spiders/forexlive_webscraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/scraper/forex_webscraper/spiders/forexlive_webscraper.py -------------------------------------------------------------------------------- /scraper/forex_webscraper/spiders/reuters_webscraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/scraper/forex_webscraper/spiders/reuters_webscraper.py -------------------------------------------------------------------------------- /scraper/forex_webscraper/spiders/twitter_webscraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/scraper/forex_webscraper/spiders/twitter_webscraper.py -------------------------------------------------------------------------------- /scraper/scrapy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheranMahalingam/Forex_Technical_Analysis_Platform/HEAD/scraper/scrapy.cfg --------------------------------------------------------------------------------