Created
September 20, 2024 00:53
-
-
Save ericthelin/591017606d33c37173d5d3a49fb7fa1a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| //example url config in info-orbs | |
| //#define WEB_DATA_STOCK_WIDGET_URL "http://192.168.10.242/stocks.php?stocks=SPY,VT,GOOG,TSLA,GME" | |
| $stocks = explode(",", $_GET['stocks']); | |
| $displays = ['interval' => '20000', 'displays' => []]; | |
| foreach ($stocks as $stock) { | |
| $stockData = outputStockDisplay($stock); | |
| $displays['displays'][] = $stockData; | |
| } | |
| header('Content-Type: application/json; charset=utf-8'); | |
| echo json_encode($displays); | |
| exit; | |
| function get_stock_data($symbol) | |
| { | |
| $apiKey = 'aVhwT1NWWkhIZVBRZlIwOUlHb01keWFrMEI5Ql9QM1ZIZndtay1ub0V3OD0'; | |
| $url = sprintf('https://api.marketdata.app/v1/stocks/quotes/%s/?token=%s', $symbol, $apiKey); | |
| $json = file_get_contents($url); | |
| return json_decode($json, true); | |
| } | |
| function outputStockDisplay($symbol) | |
| { | |
| $data = get_stock_data($symbol); | |
| $price = $data['last'][0]; | |
| $change = $data['change'][0]; | |
| $changePercent = $data['changepct'][0]; | |
| $changePercent = round($changePercent * 100, 2); | |
| $headerColor = 'blue'; | |
| $output = [ | |
| 'fullDraw' => false, | |
| 'data' => [ | |
| [ | |
| 'type' => 'rectangle', | |
| 'x' => 0, | |
| 'y' => 0, | |
| 'height' => 50, | |
| 'width' => 240, | |
| 'color' => $headerColor, | |
| 'filled' => true, | |
| ], | |
| [ | |
| 'type' => 'text', | |
| 'x' => 120, | |
| 'y' => 27, | |
| 'font' => 1, | |
| 'size' => 4, | |
| 'text' => $symbol, | |
| 'align' => 'center', | |
| 'color' => 'white', | |
| 'background' => $headerColor, | |
| ], | |
| [ | |
| 'type' => 'text', | |
| 'x' => 120, | |
| 'y' => 51 + 32, | |
| 'font' => 1, | |
| 'size' => 4, | |
| 'align' => 'center', | |
| 'text' => sprintf('$%.2f', $price), | |
| 'color' => 'white', | |
| 'background' => 'black', | |
| ], | |
| [ | |
| 'type' => 'text', | |
| 'x' => 120, | |
| 'y' => 147, | |
| 'font' => 1, | |
| 'size' => 4, | |
| 'align' => 'center', | |
| 'text' => sprintf('%.2f%%', $changePercent), | |
| 'color' => 'green', | |
| 'background' => 'black', | |
| ], | |
| ] | |
| ]; | |
| if ($change > 0) { | |
| $output['data'][] = [ | |
| 'type' => 'triangle', | |
| 'x' => 120, | |
| 'y' => 185, | |
| 'x2' => 140, | |
| 'y2' => 220, | |
| 'x3' => 100, | |
| 'y3' => 220, | |
| 'filled' => true, | |
| 'color' => 'green', | |
| ]; | |
| } else { | |
| $output['data'][] = [ | |
| 'type' => 'triangle', | |
| 'x' => 120, | |
| 'y' => 220, | |
| 'x2' => 140, | |
| 'y2' => 185, | |
| 'x3' => 100, | |
| 'y3' => 185, | |
| 'filled' => true, | |
| 'color' => 'red', | |
| ]; | |
| } | |
| return $output; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment