-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5fead3a
commit 8cc80f7
Showing
1 changed file
with
13 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
Once your bot is up and running, generating a specific dataset, you will want to be able to visualize the data in a more friendly manner, probably on top of a typical candlestick chart. To do that, you will need to program a plotter. | ||
|
||
Plotters --unlike bots-- run on the Web Platform. Upon execution, the Web Platform loads a web page which, in turn, calls scripts corresponding to bots plotters, among others. The scripts are loaded directly from the corresponding GitHub repository. Thus, every time you wish to see the effect of changes made in plotter’s code you need to commit the changes and push them to the repository. You will use your browser’s debugging tools to debug your scripts directly in-browser. | ||
|
||
## Step 1: A Little Planning | ||
|
||
Decide on what is the best way to visualize the data your bot is outputting. Is it a curve? Is it a candlestick pattern? Is it a horizontal line? | ||
|
||
Are there any existing bots with similar visualization requirements that you can copy as a starter? | ||
|
||
## Step 2: Clone Plotter | ||
|
||
Clone the existing plotter of your choice and use it as a starting point for your own development. |