Proposals are currently absent
-
Serhii B. 20 January 2023Вот что выдает гугл по запросу "импорт данных pine script" (поверхностный поиск, запись в октябре прошлого года) - В разработке находится функция, которая позволит пользователям создавать собственные потоки данных OHLCV EOD. Эти данные должны быть созданы пользователями, размещены в репозитории Git и доступны из сценариев через
request.*()вызов
Данные можно подтягивать с ограниченного перечня ресурсов, таких как QUANDL. Но именно QUANDL выкупили не так давно и залить туда свою информацию уже вряд ли возможно.
Второй нюанс - даже если и запустили уже функцию импорта, то она, скорее всего, будет доступна исключительно для платных аккаунтов, по аналогии с экспортом. -
Sergii Nikonenko
20 January 2023
не уверен по поводу того что в разработке, но вот пример (нашел в интернете) как это может выглядеть
1. нужно взять график LTCUSDT
2. вставить в панель скрипта вот этот сркрипт - будет ниже по тексту
3. добавить скрипт на график (и если выбрать часовой таймфрейм, то это примерно то что нужно, только мне непонятно как туда текст добавить и массив сделать чтоб Id показывать)
//@version=5
indicator("My study", max_labels_count=500, overlay=true)
// Define arrays of undefined size, so you can add many datapoints
var float[] prices = array.new_float()
var string[] ids = array.new_string()
var int[] date = array.new_int()
// Function to add data to the arrays
f_data(_price, _id, _date) =>
array.push(prices, _price)
array.push(ids, _id)
array.push(date, _date)
// Function to create a label
f_label(_idx) =>
labelText = "TRADE: " + array.get(ids, _idx) + "\n\n BUY: " + str.tostring(array.get(prices, _idx))
label.new(array.get(date, _idx), array.get(prices, _idx), labelText, xloc.bar_time, yloc.price, color=color.red, textcolor=color.white, style=label.style_triangledown, size = size.tiny)
// Enter data into the arrays on the first bar only.
// No need to do it on every bar (for performance).
if barstate.isfirst
// You don't need to use the epoch time integer, you can also use the timestamp() function
f_data(86, 'BUY IN', timestamp(2023, 01, 13, 0, 0, 0))
f_data(84.5, 'SELL OUT', timestamp(2023, 01, 13, 1, 0, 0))
f_data(87, 'SELL OUT', timestamp(2023, 01, 14, 1, 0, 0))
// Create the labels on the chart's last bar
if barstate.islast
for i = 0 to array.size(ids) - 1
f_label(i)
-
Serhii B. 20 January 2023Собственно это и имел ввиду - скрипт не сложный. А вот вносить данные...
В общем, скорей всего, все данные по сделкам придется прописывать в сам скрипт пайн. Если сделок будет много, то возможно стоит задуматься о написании программки (например на питоне) для формирования скрипта на пайн :) -
Sergii Nikonenko
20 January 2023
это да, на следующем этапе:), но пока главное на графике отобразить
-
Serhii B. 20 January 2023Могу попробовать посодействовать в этом вопросе. Только давно уже с пайн имел дело, подзабыл. Несколько дней может уйти на это задание
-
Sergii Nikonenko
20 January 2023
не уверен по поводу того что в разработке, но вот пример (нашел в интернете) как это может выглядеть
1. нужно взять график LTCUSDT
2. вставить в панель скрипта вот этот сркрипт - будет ниже по тексту
3. добавить скрипт на график (и если выбрать часовой таймфрейм, то это примерно то что нужно, только мне непонятно как туда текст добавить и массив сделать чтоб Id показывать)
//@version=5
indicator("My study", max_labels_count=500, overlay=true)
// Define arrays of undefined size, so you can add many datapoints
var float[] prices = array.new_float()
var string[] ids = array.new_string()
var int[] date = array.new_int()
// Function to add data to the arrays
f_data(_price, _id, _date) =>
array.push(prices, _price)
array.push(ids, _id)
array.push(date, _date)
// Function to create a label
f_label(_idx) =>
labelText = "TRADE: " + array.get(ids, _idx) + "\n\n BUY: " + str.tostring(array.get(prices, _idx))
label.new(array.get(date, _idx), array.get(prices, _idx), labelText, xloc.bar_time, yloc.price, color=color.red, textcolor=color.white, style=label.style_triangledown, size = size.tiny)
// Enter data into the arrays on the first bar only.
// No need to do it on every bar (for performance).
if barstate.isfirst
// You don't need to use the epoch time integer, you can also use the timestamp() function
f_data(86, 'BUY IN', timestamp(2023, 01, 13, 0, 0, 0))
f_data(84.5, 'SELL OUT', timestamp(2023, 01, 13, 1, 0, 0))
f_data(87, 'SELL OUT', timestamp(2023, 01, 14, 1, 0, 0))
// Create the labels on the chart's last bar
if barstate.islast
for i = 0 to array.size(ids) - 1
f_label(i)
Current freelance projects in the category Data Parsing
We are looking for an experienced Full Stack developer or a small team to create an online tire store for the Norwegian company EasyTire. Important: the site will be fully developed in Norwegian (all texts will be provided, but they must be editable through the admin panel). What needs to be implemented Search for a car by license plate number. Automatic determination of the original tire and rim size. Ability to manually search by size if non-original wheels are installed. Display of suitable tires, rims, and wheel sets with current prices, stock, and delivery times. "Buy Now" and "Add to Cart" buttons. Calculation of the total order cost. Offer of installation and balancing services when purchasing tires. Online payment. Automatic creation of a paid order in Notion. Sending a notification about a new order in Telegram. A simple admin panel for managing prices, texts, photos, and SEO. Modern responsive design in the EasyTire corporate style. It is also necessary to develop a separate SEO page for services (installation, balancing, puncture repair, and seasonal wheel change) so that it can be promoted on Google for relevant search queries. Integration with the supplier We have a dealer account with NDI. We have already discovered the internal API requests of the site, through which the following can be obtained: car data by registration number; prices; availability; warehouse; delivery times. At the first stage, it is necessary to explore the existing internal APIs and determine the most reliable method of integration. If the use of internal APIs turns out to be impossible or unstable, an alternative solution should be proposed (for example, server automation or another technically justified option). In your response, please indicate experience in similar projects; proposed technology stack; how you envision the integration with NDI; estimated timelines; estimated cost; cost of further support. A complete technical specification will be provided to the selected contractor after preliminary project discussion.
A parser needs to be created to collect competitor prices, with a catalog of over 40,000 products. Access to the prices is only available under authorization.
It is necessary to set up the parser remotely (via Anydesk or TeamViewer), something is broken and not working correctly. Mainly replacing the starting links and configuring the parser. Website https://dveri-pol.com/
A modern online toy store needs to be created on WordPress (WooCommerce). Main requirements: - Responsive design for PCs, tablets, and smartphones. - Product catalog with categories, filters, and search. - Product pages with descriptions, photos, specifications, and prices. - Cart and checkout. - Integration of popular payment and delivery methods. - Customer personal account. - User-friendly control panel for adding and editing products. - Basic SEO optimization and high website loading speed. - Security, backup, and SSL settings. It is preferable to use a modern, lightweight theme or create a custom design. After the work is completed, a brief management guide for the website must be provided.
Data collection is required on buyers and sellers of art items. Databases from Ebay and specialized global art websites are of interest.