-
Notifications
You must be signed in to change notification settings - Fork 570
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Partial progress, react-stockcharts broken by hot reload * Add lib and new component * Update prettierignore * -Working price chart * Market switching, some styling, custom css added * Fix some data issues * Implement bucket size switching via TradingView chart * Improve market switching and DataFeed subs * Fix DataFeed subscribeBars callback * Increase default chart height and update some colors * Extend bucket resolution logic to include seconds and weeks * Fix TradingView loading for electron * Fix electron edit shortcuts and library_path * Another fix for tradingview chart loading * Fix build and react hot reload * All working except react stockcharts in dev * Update tradingview library * Add symbol description including gateway name, fix some theme issues * #905: Add mobile preset for narrow screens * #905: Add timezone resolution for zones supported by TradingView * Add a 'Native' key for TradingView exchange names * #905: Fix some description and subscription issues * #905: Change depth/price chart toggle to instead trigger a modal with height and chart switching * Improve symbol description, add special case for PPY * Fix inlined svgs * Update package-lock * Fix sticky-table css import * Remove pricechart component
- Loading branch information
Showing
21 changed files
with
3,741 additions
and
1,013 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
require("./stylesheets/app.scss"); | ||
require("file-loader?name=index.html!./index-dev.html"); | ||
require("file-loader?name=favicon.ico!./favicon.ico"); | ||
require("file-loader?name=dictionary.json!common/dictionary_en.json"); | ||
// require("babel-polyfill"); | ||
// require("file-loader?name=dictionary.json!common/dictionary_en.json"); | ||
require("babel-polyfill"); | ||
require("whatwg-fetch"); | ||
require("indexeddbshim"); | ||
require("./asset-symbols/symbols.js"); | ||
require("./language-dropdown/flags.js"); | ||
|
||
import locales from "assets/locales"; | ||
for (let locale of locales) { | ||
require(`file-loader?name=[name].[ext]!./locales/locale-${locale}.json`); | ||
} | ||
// import locales from "assets/locales"; | ||
// for (let locale of locales) { | ||
// require(`file-loader?name=[name].[ext]!./locales/locale-${locale}.json`); | ||
// } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.