Fear and Greed Index Sensor Node
The Fear & Greed Index is an index that represents sentiment towards Bitcoin and the Crypto market. This node acts as both a continuous or triggered only sensor node. When sensor mode is selected this node will output a message whenever the Fear & Greed Index is updated. Then sensor mode is deactivated, this node will output a message only when manually triggered. The Fear & Greed Index is updated every 24 hours.
Value | Classification |
---|---|
1-25 | Extreme Fear |
26-46 | Fear |
47-54 | Neutral |
55-75 | Greed |
76-100 | Extreme Greed |
In sensor mode, you can send a test message by clicking the square on the left side of the node. It will replay a message that matches your configured filter. If it cannot find such a message, one will be emitted that doesn’t match the filter.
Configuration
Input
This node does not process any incoming message on its own.
Output (sensor mode deactivated)
The message will be enriched by the fear_and_greed_index
property:
Example message:
{
"payload": 21,
"payload_text": "Latest Fear and Greed Index value is classified as 'Extreme Fear' with value 21",
"fear_and_greed_index": {
"value": 21,
"value_classification": "Extreme Fear",
"timestamp": "2022-09-26 00:00:00.000"
}
}
Output (sensor mode activated)
The message will be enriched by the fear_and_greed_index
property:
Example message:
{
"payload": 21,
"payload_text": "Today's Fear and Greed Index value is classified as 'Extreme Fear' with value 21",
"sensor": "fear_and_greed_index",
"fear_and_greed_index": {
"value": 21,
"value_classification": "Extreme Fear",
"timestamp": "2022-09-26 00:00:00.000"
}
}