-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathappend_stock_price.php
117 lines (66 loc) · 2.51 KB
/
append_stock_price.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<?php
require_once './include/common.php';
// setting up end headers
$headers = [
'Content-Type' => 'application/json',
'X-Kite-Version' => '3',
'Authorization' => 'token '.KEY.':'.TOKEN
];
$client = new GuzzleHttp\Client([
'headers' => $headers
]);
//Fetching stock Symbol
$symbol = $_GET['s'];
$end_point = "https://api.kite.trade/quote?i=NSE:$symbol";
$res = $client->request('GET', $end_point);
$response = $res->getBody()->getContents();
$response = (json_decode($response, true));
$last_price = $response['data']["NSE:$symbol"]['last_price'];
$last_price = str_replace(",", "", $last_price); //last price
$quantity = (ALLOCATE_PRICE / $last_price) ;
$quantity = (int)$quantity; //quantity
$date = date('d-m-Y');
//Place Order
$end_point = "https://api.kite.trade/orders/regular";
$res = $client->request('POST', $end_point, [
'form_params' => [
'tradingsymbol' => $symbol,
'exchange' => 'NSE',
'transaction_type' => "BUY",
'order_type' => 'MARKET',
'quantity' => $quantity,
'product' => 'CNC',
'validity' => 'DAY'
]
]);
$response = $res->getBody()->getContents();
$response = (json_decode($response,true));
//Fetching order id
$order_id = $response['data']['order_id'];
//Fetch Average Price
$end_point = "https://api.kite.trade/orders/$order_id";
$res = $client->request('GET', $end_point);
$response = $res->getBody()->getContents();
$response = (json_decode($response,true));
$length = count($response['data']);
$length = $length-1;
//Fetching average price
$price = $response['data'][$length]['average_price'];
$price = number_format($price,1);
$price = str_replace(",", "", $price); //last price
$field = array("id,quanity","price");
$table = "stockAmo";
$condition = "symbol = '$symbol'";
$arugment = array( "field" => $field , "table" => $table, 'condition' => $condition);
$data = select($arugment,"one");
$previous_quantity = $data['quanity'];
$id = $data['id'];
$final_quantity = $previous_quantity + $quantity;
$price = ($data['price'] + $price) / 2 ;
$price = (int) $price;
//Update for AMO
$query = "UPDATE `stockAmo` SET `price`='$price',`quanity`='$final_quantity' WHERE id = '$id'";
$result = mysqli_query($GLOBALS['mysqlConnect'],$query);
header("location:list_watch.php");
exit;
?>