1
0
mirror of https://github.com/oceanprotocol/docs.git synced 2024-11-26 19:49:26 +01:00

GITBOOK-222: change request with no subject merged in GitBook

This commit is contained in:
Veronica Manuel 2023-05-22 15:42:16 +00:00 committed by gitbook-bot
parent 296ffc7611
commit dc4ed8a7d4
No known key found for this signature in database
GPG Key ID: 07D2180C7B12D0FF
2 changed files with 6 additions and 6 deletions

View File

@ -1,5 +1,5 @@
--- ---
description: DeFI description: All you need to know about Ocean and decentralized finance
cover: ../.gitbook/assets/cover/rewards.png cover: ../.gitbook/assets/cover/rewards.png
coverY: 0 coverY: 0
--- ---
@ -16,7 +16,7 @@ We offer a Predict ETH data challenge where participants can win prizes 💰 for
Check our [challenges page](https://oceanprotocol.com/challenges) to see if there is an active Predict ETH challenge! Check our [challenges page](https://oceanprotocol.com/challenges) to see if there is an active Predict ETH challenge!
Wondering how to start predicting the price of ETH? We have a [blogpost](https://blog.oceanprotocol.com/capitalize-with-ocean-protocol-a-predict-eth-tutorial-b2da136633f0?source=search\_post---------0----------------------------) 📖 for that!  Wondering how to start predicting the price of ETH? We have a [blogpost](https://blog.oceanprotocol.com/capitalize-with-ocean-protocol-a-predict-eth-tutorial-b2da136633f0?source=search\_post---------0----------------------------) 📖 for that!
## Algorithmic Crypto Trading 🤖📊 ## Algorithmic Crypto Trading 🤖📊
@ -26,7 +26,7 @@ Check out our video [tutorial](https://www.youtube.com/watch?v=c7A4vA8YUyI) on h
{% embed url="https://www.youtube.com/watch?v=c7A4vA8YUyI" %} {% embed url="https://www.youtube.com/watch?v=c7A4vA8YUyI" %}
Are you more of a reader? Check out our [blogpost](https://blog.oceanprotocol.com/capitalize-with-ocean-protocol-a-sma-algorithmic-trading-tutorial-a2490661ab85) 📖 how to use a Python SMA crossover strategy with grid search optimization to begin accurately predicting ETH.  Are you more of a reader? Check out our [blogpost](https://blog.oceanprotocol.com/capitalize-with-ocean-protocol-a-sma-algorithmic-trading-tutorial-a2490661ab85) 📖 how to use a Python SMA crossover strategy with grid search optimization to begin accurately predicting ETH.
## Create Trading Strategy NFTs 📲 ## Create Trading Strategy NFTs 📲

View File

@ -14,7 +14,7 @@ The beginning of any great algorithm for Compute-to-Data first starts by referen
{% tabs %} {% tabs %}
{% tab title="Python" %} {% tab title="Python" %}
``` ```python
import csv import csv
import json import json
import os import os
@ -51,7 +51,7 @@ with open(input_filename, 'r') as file:
{% endtab %} {% endtab %}
{% tab title="Javascript" %} {% tab title="Javascript" %}
``` ```javascript
const fs = require("fs"); const fs = require("fs");
var input_folder = "/data/inputs"; var input_folder = "/data/inputs";
@ -81,7 +81,7 @@ processfolder(input_folder);
**Note:** Here are the following Python libraries that you can use in your code: **Note:** Here are the following Python libraries that you can use in your code:
``` ```python
// Python modules // Python modules
numpy==1.16.3 numpy==1.16.3
pandas==0.24.2 pandas==0.24.2