Script Python qui permet de savoir à l'avance quand le prix d'une crypto va augmenter
J'en suis qu'à l'ébauche du code et il est bourré de pb, aidez moi svp Pour l'instant le seul paramètre que j'ai mis c'est le changement de volume de 10%
Ensuite je vais rajouter d'autres trucs comme le RSI
- Import the necessary libraries
import requests
import json
import time
- Enter the name of the cryptocurrency and the time period for which you want to monitor the volume change
coin = "bitcoin"
time_period = "24h"
- Set the threshold for a sudden change in volume (10% increase or decrease in volume)
volume_threshold = 0.1
while True:
# Use the CoinMarketCap API to get the volume data for the given cryptocurrency and time period
url = f"https://api.coinmarketcap.com/v2/ticker/{coin}/?convert=USD&limit=10&structure=array"
response = requests.get(url)
# Check for errors in the API response
if response.status_code != 200:
print("Error: Could not retrieve data from CoinMarketCap. Please check your API key and try again.")
exit()
# Parse the API response as JSON
data = json.loads(response.text)
# Check if the given cryptocurrency is valid
if not data:
print(f"Error: Could not find data for the cryptocurrency
# Import the necessary libraries
import requests
import json
import time
# Enter the name of the cryptocurrency and the time period for which you want to monitor the volume change
coin = "bitcoin"
time_period = "24h"
# Set the threshold for a sudden change in volume (e.g. a 10% increase or decrease in volume)
volume_threshold = 0.1
while True:
# Use the CoinMarketCap API to get the volume data for the given cryptocurrency and time period
url = f"https://api.coinmarketcap.com/v2/ticker/{coin}/?convert=USD&limit=10&structure=array"
response = requests.get(url)
# Check for errors in the API response
if response.status_code != 200:
print("Error: Could not retrieve data from CoinMarketCap. Please check your API key and try again.")
exit()
# Parse the API response as JSON
data = json.loads(response.text)
# Check if the given cryptocurrency is valid
if not data:
print(f"Error: Could not find data for the cryptocurrency)
Bon on est d'accord je dois import request pour utiliser le protocole HTTP et avoir accès à l'api de CMC?
Ensuite j'importe json pour parse la data
puis time pour des raisons évidentes
Ensuite j'ai l'impression qu'il manque un truc essentiel mais QUOI?
Le 03 décembre 2022 à 18:00:41 :
Bon on est d'accord je dois import request pour utiliser le protocole HTTP et avoir accès à l'api de CMC?
Ensuite j'importe json pour parse la data
puis time pour des raisons évidentesEnsuite j'ai l'impression qu'il manque un truc essentiel mais QUOI?
faire un truc avec les données que tu récupère ?
après jsp je suis pas expert mais il faut regarder par là à mon avis
Le 03 décembre 2022 à 18:11:01 :
Le 03 décembre 2022 à 18:00:41 :
Bon on est d'accord je dois import request pour utiliser le protocole HTTP et avoir accès à l'api de CMC?
Ensuite j'importe json pour parse la data
puis time pour des raisons évidentesEnsuite j'ai l'impression qu'il manque un truc essentiel mais QUOI?
faire un truc avec les données que tu récupère ?
après jsp je suis pas expert mais il faut regarder par là à mon avis
Non mais je parlais des import de librairies externes
J'ai l'impression que j'oublie une fonction importante
Le 03 décembre 2022 à 18:11:01 miamentent a écrit :
Le 03 décembre 2022 à 18:00:41 :
Bon on est d'accord je dois import request pour utiliser le protocole HTTP et avoir accès à l'api de CMC?
Ensuite j'importe json pour parse la data
puis time pour des raisons évidentesEnsuite j'ai l'impression qu'il manque un truc essentiel mais QUOI?
faire un truc avec les données que tu récupère ?
après jsp je suis pas expert mais il faut regarder par là à mon avis
De rien.
return random()
Voilà
Le 03 décembre 2022 à 18:20:12 :
Je vais te faire gagner du temps: c'est un ponzi. Ca remonte jamais.
De rien.
Faux, mais perso je compte juste l'utiliser pour faire des trade court terme
Détection d'une hausse de volume + RSI bas = j'achète
Je touche pas aux futures ni aux short par contre
Données du topic
- Auteur
- PetitBatonnet
- Date de création
- 3 décembre 2022 à 17:39:11
- Nb. messages archivés
- 44
- Nb. messages JVC
- 43