Carl
Carl
Hello I have fixed my graph size issues by adding one line to the code ``` console.log(graph.src) graph.style.maxWidth="150px"; // This line is added graphWrapper.appendChild(graph) ``` Also the logos sometimes have...
@jindirosan Yes I am Dutch I did an extended version of this module https://github.com/spoturdeal/MMM-crypto-portfolio there you can add the values of the coin you actually own
Hello Mateo, I have made my own portfolio and changed a few lines of your code. around line 354 I have added and edit some lines ``` var cPrice= apiResult[j].price.replace("€",...
@lordvalium I have got the solution ``` var cPrice= currentCurrency.price.replace("€", "").trim(); //add this line around line 207 cPrice= parseFloat(cPrice.replace(",",".")); // add this line var myWallet='€ '+(this.config.wallet[i] * cPrice ).toFixed(2); //...
@lordvalium To add the total market cap of your portfolio you need to write a few lines as well ``` tableHeader.style.textAlign="right"; // add this line for layout purpose wrapper.appendChild(tableHeader) var...
@lordvalium I am not sure what you mean. You can also write German if that's easier to explain.
@lordvalium I think I know what you need. Not to mess up Matteos great module I have added my own module based on Matteo's work you can find it at...
I prefer to use the DOIT ESP32 DEVKIT V1 it is a cheaper version and my experience is that it has less issues. Also the price is a lot less...
This is the link to the board I use [link to DOIT ESP DEVKIT v1](https://www.banggood.com/ESP32-Development-Board-WiFiBluetooth-Ultra-Low-Power-Consumption-Dual-Cores-ESP-32-ESP-32S-Board-p-1109512.html?p=VQ141018240205201801) at Banggood. Today is US$ 6.79 EUR 6.00 with free delivery. In which country are...
Today restructured the code. Easier to maintain and understand. All functions are now alphabetical.