Skip to content

Commit

Permalink
fix grammar
Browse files Browse the repository at this point in the history
  • Loading branch information
wwbustb committed Oct 13, 2018
1 parent 02fddc1 commit ed6f820
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
Binary file modified doc/_build/html/.doctrees/environment.pickle
Binary file not shown.
Binary file modified doc/_build/html/.doctrees/getting_started.doctree
Binary file not shown.
4 changes: 2 additions & 2 deletions doc/_build/html/_sources/getting_started.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,15 @@ You only need to write one strategy and run it on all exchanges without any chan
FMZ supports `JavaScript`, `Python`, `C++` (JavaScript and Python are recommended) for coding your strategies. Benefiting from the completed languages supporting(not a custom language
only can be used for one platform), you can improve your programming skills as well as learn to write strategies.

**What is The docker?**
**What is the docker?**

The docker is a program that runs on your own Internet Server, which in charge of the data request, data reception, network link, Log review etc.
You can treat it like your strategy’s executor. Even if the FMZ server offline (breakdown, etc.),
it will have no influence on your robot that is running.
The Manager can run on variety of operating system.
Such as `Windows`, `Linux`, `Mac OS`, `Android`, `Raspbian`, etc.

**What does "FMZ" means?**
**What does "FMZ" mean?**

"FMZ" doesn’t have a particular meanning in English.

Expand Down
4 changes: 2 additions & 2 deletions doc/_build/html/getting_started.html
Original file line number Diff line number Diff line change
Expand Up @@ -194,13 +194,13 @@ <h1>1.1 Getting Started<a class="headerlink" href="#getting-started" title="Perm
<p><strong>What kinds of programming languages can I use to write my strategies?</strong></p>
<p>FMZ supports <cite>JavaScript</cite>, <cite>Python</cite>, <cite>C++</cite> (JavaScript and Python are recommended) for coding your strategies. Benefiting from the completed languages supporting(not a custom language
only can be used for one platform), you can improve your programming skills as well as learn to write strategies.</p>
<p><strong>What is The docker?</strong></p>
<p><strong>What is the docker?</strong></p>
<p>The docker is a program that runs on your own Internet Server, which in charge of the data request, data reception, network link, Log review etc.
You can treat it like your strategy’s executor. Even if the FMZ server offline (breakdown, etc.),
it will have no influence on your robot that is running.
The Manager can run on variety of operating system.
Such as <cite>Windows</cite>, <cite>Linux</cite>, <cite>Mac OS</cite>, <cite>Android</cite>, <cite>Raspbian</cite>, etc.</p>
<p><strong>What does “FMZ” means?</strong></p>
<p><strong>What does “FMZ” mean?</strong></p>
<p>“FMZ” doesn’t have a particular meanning in English.</p>
</div>
<div class="section" id="the-backtest-system">
Expand Down
6 changes: 3 additions & 3 deletions doc/code_Instruction/Global Function.rst
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ Return value: bool type, return true if successful
Dial(Address, Timeout)
Original Socket access, support tcp, udp, tls, unix protocol.
Get Original Socket access, support tcp, udp, tls, unix protocol.
Parameter value: Address is string type, fill in the address, TimeOut is the timeout
Expand All @@ -369,7 +369,7 @@ A JavaScript example:
}
}
Support websocket protocol.
Support websocket.
A JavaScript example of connecting to binance websocket ticker.
Expand All @@ -382,7 +382,7 @@ A JavaScript example of connecting to binance websocket ticker.
Log("Connection failed, program exited");
return
}
Log("The connection is successful and the disconnected line is automatically reconnected")
Log("The connection is successful and will automatically reconnected")
while (true) {
var buf = client.read() // Read only returns data obtained after calling read
if (!buf) {
Expand Down
4 changes: 2 additions & 2 deletions doc/getting_started.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,15 @@ You only need to write one strategy and run it on all exchanges without any chan
FMZ supports `JavaScript`, `Python`, `C++` (JavaScript and Python are recommended) for coding your strategies. Benefiting from the completed languages supporting(not a custom language
only can be used for one platform), you can improve your programming skills as well as learn to write strategies.

**What is The docker?**
**What is the docker?**

The docker is a program that runs on your own Internet Server, which in charge of the data request, data reception, network link, Log review etc.
You can treat it like your strategy’s executor. Even if the FMZ server offline (breakdown, etc.),
it will have no influence on your robot that is running.
The Manager can run on variety of operating system.
Such as `Windows`, `Linux`, `Mac OS`, `Android`, `Raspbian`, etc.

**What does "FMZ" means?**
**What does "FMZ" mean?**

"FMZ" doesn’t have a particular meanning in English.

Expand Down

0 comments on commit ed6f820

Please sign in to comment.