Skip to content

Instantly share code, notes, and snippets.

@bitdom8
Created December 29, 2023 05:46
Show Gist options
  • Save bitdom8/a2de88853fac2639c936e1294831f0ef to your computer and use it in GitHub Desktop.
Save bitdom8/a2de88853fac2639c936e1294831f0ef to your computer and use it in GitHub Desktop.
Apps Script create docs faster under some conditions, like stocks analysis
let docFinal = DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU");
// 3 of them
let docTemplete12 = DocumentApp.openById("1xuoKxDGzRr_7CwcoEEmc5Q1z0w7Jq8NIO2tMnsGUc60");
// all of them
// let docTemplete12 = DocumentApp.openById("1O_t_DzHf0XpKA6FmRrNwkhvywJ2rRT17AHy39Pka5FY");
//change the tr to get price and pct
//when en, keep TSLA out if deny error
let ws1
let three_or_200 = "3"
let lang = "tr"
if (three_or_200 = 3) {
ws1 = SpreadsheetApp.openById("1UKRGv-8BYzIQS6ig3ycHacrYm5YyOWzW6BkMc86pj5U").getSheetByName("Stock Analysis");
}
else if (three_or_200 = 200) {
ws1 = SpreadsheetApp.openById("1UKRGv-8BYzIQS6ig3ycHacrYm5YyOWzW6BkMc86pj5U").getSheetByName("Fetcher");
}
let tenyearsbond
let twoyearsbond
let dollar
function myFunction28() {
let guess = ws1.getRange(1, 1, 1200, 1).getValues();
let cguess = ws1.getRange(1, 1, 1, 1200).getValues();
// let cguessall = ws1.getRange("B2:Z93").getValues()
// let alfabe = 'abcdefghijklmnopqrstuv'.toUpperCase().split('') //after A to .. if needed add wxyz AA AB
// console.log(alfabe)
// alfabe.forEach(m => cguessall.reduce((a,c, i) =>
// // (ws1.getRange(m+(i+1)).get.toLocaleString().includes("%")) ?
// ws1.getRange(m+(i+1)).setValue(ws1.getRange(m + (i+1) ).getValue().toLocaleString().replace('—', '').replace('%', '')))
// )
var ff = 0
function altobuy(x) {
if (lang == "en") {
if (x == "Al") {
return "Buy"
}
else if (x == "Sat") {
return "Buy"
}
else if (x == "Nötr") {
return "Neutral"
}
else if (x == "Güçlü Al") {
return "Strong Buy"
}
else if (x == "Güçlü Sat") {
return "Strong Sell"
}
}
if (lang == "tr") {
return x
}
}
function gainorlose(x) {
if (lang == "en") {
if (!String(x).includes("-")) {
return "gaining %" + x
}
else if (String(x).includes("-")) {
return "falling % " + x
}
}
if (lang == "tr") {
if (!String(x).includes("-")) {
return "yüzde " + x + " yükselerek"
}
else if (String(x).includes("-")) {
return "yüzde " + x + " kayıpla"
}
}
}
guess.forEach(function (r) {
ff += 1
if (r[0] == 'QI1!GGÜMÜŞ (MINI) VADELILERI') {
first = ff
let cguess = ws1.getRange(ff, 1, 1, 200).getValues()
if (lang == "tr") {
DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, "Gümüş troy ons (31.10 gram) " + cguess[0][1] + " USD" + " (yüzde " + cguess[0][2] + ", " + cguess[0][6] + " sinyaliyle) ")
}
else if (lang == "en") {
DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, "Silver troy ounce (31.10 gram) " + cguess[0][1] + " USD" + " (percentage(pct) of " + cguess[0][2] + ", " + altobuy(cguess[0][6]) + " signaling) ")
}
DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().insertParagraph(0, "")
DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().insertParagraph(0, "")
}
if (r[0] == 'GC1!GALTIN VADELILERI') {
first = ff
let cguess = ws1.getRange(ff, 1, 1, 200).getValues()
if (lang == "tr") {
DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, "spot altın (ons), " + cguess[0][1] + " USD" + " (%" + cguess[0][2] + ", " + cguess[0][6] + ") çizgisinde ilerlemektedir.")
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, " çeyrek altın (1.75 gram), " + String(cguess[0][1] / 31.1 * dollar * 1.75).substring(0,5) + " ve ")
}
else if (lang == "en") {
DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, " Besides, XAUUSD, spot gold (oz), " + cguess[0][1] + " USD" + " (%" + cguess[0][2] + ", " + altobuy(cguess[0][6]) + "" + ") goes in trendline.")
}
}
if (r[0] == 'HG1!GBAKIR VADELILERI') {
first = ff
let cguess = ws1.getRange(ff, 1, 1, 200).getValues()
// let symbol = "BIST100"
// let link = "XU100"
// colafterrow(symbol,link, ff)
if (lang == "tr") {
DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, "Bakır 1 pound (0.4535 kg) " + cguess[0][1] + " USD fiyatıyla %" + cguess[0][2] + " (" + cguess[0][6] + " göstergesinde)" + ", ")
}
else if (lang == "en") {
DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, "Copper 1 pound (0.4535 kg), " + cguess[0][1] + " USD" + " (pct of " + cguess[0][2] + ", " + altobuy(cguess[0][6]) + "" + ") is traded currently.")
}
DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().insertParagraph(0, "")
DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().insertParagraph(0, "")
}
if (r[0] == 'PL1!GPLATIN VADELILERI') {
first = ff
let cguess = ws1.getRange(ff, 1, 1, 200).getValues()
if (lang == "tr") {
DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, "ve Platin " + cguess[0][1] + " $ (yüzde " + cguess[0][2] + ", " + cguess[0][6] + " sinyalinde) işlem görmektedir.")
}
else if (lang == "en") {
DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, "& Platinum , " + cguess[0][1] + " $" + " (" + cguess[0][2] + " of pct, " + altobuy(cguess[0][6]) + "" + ").")
}
}
if (r[0] == 'PA1!GPALLADYUM VADELILERI') {
first = ff
let cguess = ws1.getRange(ff, 1, 1, 200).getValues()
if (lang == "tr") {
DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, " Ons palladium " + cguess[0][1] + " USD ile (%" + cguess[0][2] + ") değeriyle alıcı bulmaktadır.")
}
else if (lang == "en") {
DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, " Ounce palladium " + cguess[0][1] + " USD (%" + cguess[0][2] + "" + ") costs for traders.")
}
}
if (r[0] == 'US10YABD 10 YILLIK DEVLET TAHVILI GETIRI') {
first = ff
let cguess = ws1.getRange(ff, 1, 1, 200).getValues()
tenyearsbond = cguess[0][3]
console.log(twoyearsbond, " ", tenyearsbond)
let tenminus2 = tenyearsbond - twoyearsbond
if (lang == "tr") {
DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, "ABD 10 yıllık tahvil getirisi (%" + tenyearsbond + ")" + " 2 senelik tahvil getirisi seviyesindedir (%" + twoyearsbond + ").")
}
else if (lang == "en") {
DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, "USA 10-year bond spread yield (%" + tenyearsbond + ")" + " to 2 year bond spread (%" + twoyearsbond + ") " + tenminus2 + ". ")
}
var par = DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().insertParagraph(0, "")
DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().insertParagraph(0, "")
}
if (r[0] == 'US02YABD 2 YILLIK DEVLET TAHVILLERI GETIRI') {
first = ff
let cguess = ws1.getRange(ff, 1, 1, 200).getValues()
twoyearsbond = cguess[0][3]
}
if (r[0] == 'DXYABD DOLAR ENDEKSI') {
first = ff
let cguess = ws1.getRange(ff, 1, 1, 200).getValues()
if (lang == "tr") {
DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, "Amerikan dolar endeksi " + cguess[0][1] + " (%" + cguess[0][2] + ", " + cguess[0][6] + ") ilerlemektedir. ")
}
else if (lang == "en") {
DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, "American Dollar index (DXY) " + cguess[0][1] + " follows (%" + cguess[0][2] + " " + altobuy(cguess[0][6]) + ") its pathway. ")
}
// console.log(par.getAttributes())
// var style = {};
// style[DocumentApp.Attribute.MARGIN_TOP] = 30;
// style[DocumentApp.Attribute.FONT_SIZE] = 10;
// style[DocumentApp.Attribute] = 12;
// docFinal.getBody().findText("Amerikan dolar endeksi").getElement().setAttributes(0, 4, style)
var par = DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().insertParagraph(0, "")
DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().insertParagraph(0, "")
}
if (r[0] == 'USDTRYABD DOLARI / TÜRK LIRASI') {
first = ff
let cguess = ws1.getRange(ff, 1, 1, 200).getValues()
if (lang == "tr") {
dollar = cguess[0][1]
DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, "USDTRY " + cguess[0][6] + " sinyaliyle " + cguess[0][1] + " 'den' (%" + cguess[0][2] + ") ve")
}
else if (lang == "en") {
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, "USDTRY is signalling " + altobuy(cguess[0][6]) + " along with the price of " + cguess[0][1] + " TRY (%" + cguess[0][2] + " "+ ") and ")
}
DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().insertParagraph(1, "")
}
if (r[0] == 'EURTRYEURO / TÜRK LIRASI') {
first = ff
let cguess = ws1.getRange(ff, 1, 1, 200).getValues()
if (lang == "tr") {
DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, " Euro " + cguess[0][1] + " fiyatıyla (%" + cguess[0][2] + " " + cguess[0][6] + ") işlem görmektedir.")
}
else if (lang == "en") {
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, "Euro " + "(signalling " + altobuy(cguess[0][6]) + ")" + " is currently being traded with " + cguess[0][1] + " TRY (pct " + cguess[0][2] + ").")
}
}
if (r[0] == 'DJIDOW JONES ENDÜSTRI ORTALAMASI ENDEKSI') {
first = ff
let cguess = ws1.getRange(ff, 1, 1, 200).getValues()
if (lang == "tr") {
DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, "ABD borsalarından, Dow Jones Endüstriyel " + cguess[0][1] + " (%" + cguess[0][2] + "), ")
}
else if (lang == "en") {
DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, "" + "Dow Jones " + "(daily " + altobuy(cguess[0][6]) + ")" + " is moving in the direction " + cguess[0][1] + " " + gainorlose(cguess[0][2]) + ".")
}
DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().insertParagraph(0, "")
DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().insertParagraph(0, "")
}
if (r[0] == 'SPXS&P 500 ENDEKSI') {
first = ff
let cguess = ws1.getRange(ff, 1, 1, 200).getValues()
if (lang == "tr") {
DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, " SP500 " + cguess[0][1] + " grafiğinde (%" + cguess[0][2] + "), " + altobuy(cguess[0][6]) + " sinyallerindedir. ")
}
else if (lang == "en") {
DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, " S&P 500 " + "(signalling " + altobuy(cguess[0][6]) + ")" + " is " + cguess[0][1] + " high, " + gainorlose(cguess[0][2]) + ".")
}
}
if (r[0] == 'IXICNASDAQ BILEŞIK ENDEKSI') {
first = ff
let cguess = ws1.getRange(ff, 1, 1, 200).getValues()
if (lang == "tr") {
DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, " NASDAQ " + cguess[0][1] + " 'den (%" + cguess[0][2] + ") " + altobuy(cguess[0][6]) + ", ")
}
else if (lang == "en") {
DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, " NASDAQ " + "(" + altobuy(cguess[0][6]) + ")" + " is " + cguess[0][1] + " points, following its trendline " + gainorlose(cguess[0][2]) + ".")
}
}
if (r[0] == 'TSLA') {
first = ff
let cguess = ws1.getRange(ff, 1, 1, 200).getValues()
let link = "TSLA"
var style = {};
style[DocumentApp.Attribute.LINK_URL] = "https://tr.tradingview.com/symbols/" + link + "/"
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, "TSLA stock " + cguess[0][1] + " (%" + cguess[0][2] + ") bulunmaktadır.")
if (lang == "tr") {
DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().insertParagraph(14, "TSLA stock " + cguess[0][1] + " (%" + cguess[0][2] + ") ilerlemektedir.")
}
else if (lang == "en") {
DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().insertParagraph(14, "TSLA stock " + "is " + cguess[0][1] + ", " + gainorlose(cguess[0][2]) + ". ")
}
docFinal.getBody().findText("TSLA stock").getElement().setAttributes(0, 9, style)
}
if (r[0] == 'UKXUK 100 ENDEKSI') {
first = ff
let cguess = ws1.getRange(ff, 1, 1, 200).getValues()
if (lang == "tr") {
DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, "FTSE 100 Endeksi " + cguess[0][1] + " (%" + cguess[0][2] + ").")
}
else if (lang == "en") {
DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, " FTSE 100 " + "(" + altobuy(cguess[0][6]) + ")" + gainorlose(cguess[0][2]) + " is " + cguess[0][1] + " " + ".")
}
DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().insertParagraph(0, "")
}
if (r[0] == 'SHCOMPŞANGAY BILEŞIK ENDEKSI') {
first = ff
let cguess = ws1.getRange(ff, 1, 1, 200).getValues()
if (lang == "tr") {
DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, " Şangay komposite " + cguess[0][1] + " (%" + cguess[0][2] + ", " + cguess[0][6] + "),")
}
else if (lang == "en") {
DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, " " + "Shanghai Composite " + "(" + altobuy(cguess[0][6]) + ")" + " is " + cguess[0][1] + ", " + gainorlose(cguess[0][2]) + ".")
}
}
if (r[0] == 'NI225NIKKEI 225') {
first = ff
let cguess = ws1.getRange(ff, 1, 1, 200).getValues()
if (lang == "tr") {
DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, " NİKKEİ " + cguess[0][1] + " (%" + cguess[0][2] + ", " + cguess[0][6] + ") bulunmaktadır.")
}
else if (lang == "en") {
DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, " NIKKEI " + "(" + altobuy(cguess[0][6]) + ")" + " is followed by " + cguess[0][1] + ", " + gainorlose(cguess[0][2]) + ".")
}
}
if (r[0] == 'DAXDAX ENDEKSI') {
first = ff
let cguess = ws1.getRange(ff, 1, 1, 200).getValues()
if (lang == "tr") {
DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, "Almanya DAX " + cguess[0][1] + " (%" + cguess[0][2] + " " + cguess[0][6] + "), ")
}
else if (lang == "en") {
DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, "German DAX" + " is " + cguess[0][1] + ", " + gainorlose(cguess[0][2]) + " " + "(" + altobuy(cguess[0][6]) + ")" + ".")
}
DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().insertParagraph(0, "")
DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().insertParagraph(0, "")
}
if (r[0] == 'UUKXUK 100 ENDEKSI') {
first = ff
let cguess = ws1.getRange(ff, 1, 1, 200).getValues()
if (lang == "tr") {
DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, " İngiltere UK100 endeksi " + cguess[0][1] + " (%" + cguess[0][2] + ") bulunmaktadır.")
}
else if (lang == "en") {
DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, " UK100 index " + cguess[0][1] + " is " + gainorlose(cguess[0][2]) + " " + "(providing " + altobuy(cguess[0][6]) + " signals)" + ".")
}
}
if (r[0] == 'XU100BIST 100 ENDEKSI') {
first = ff
let cguess = ws1.getRange(ff, 1, 1, 200).getValues()
if (lang == "tr") {
if (cguess[0][6] == "Güçlü Sat") {
var ran = Number(String(Math.random() * 1)[3])
if (ran < 5) {
DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, "Bununla birlikte, Borsa İstanbul " + cguess[0][1] + " (%" + cguess[0][2] + ") ile" + " " + cguess[0][6] + " " + "olumsuz bir tablo çizmekte.")
}
if (ran > 4) {
DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, "Dahası, Borsa İstanbul " + cguess[0][1] + " (%" + cguess[0][2] + ") " + " " + cguess[0][6] + " negatif bir grafikle karşı karşıyayız.")
}
}
if (cguess[0][6] == "Sat") {
var ran = Number(String(Math.random() * 1)[3])
if (ran < 5) {
DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, "Borsa İstanbul " + cguess[0][1] + " (%" + cguess[0][2] + ") " + cguess[0][6] + " 'dedir.")
}
if (ran > 4) {
DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, cguess[0][6] + " sinyalindeki Borsa İstanbul " + cguess[0][1] + " (%" + cguess[0][2] + ") " + + " 'dedir.")
}
}
if (cguess[0][6] == "Güçlü Al") {
DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, "Borsa İstanbul ise " + cguess[0][1] + " (%" + cguess[0][2] + ") ile" + " " + cguess[0][6] + " " + "daha güçlü bir duruşta.")
}
if (cguess[0][6] == "Al") {
var ran = Number(String(Math.random() * 1)[3])
if (ran < 5) {
DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, "Borsa İstanbul " + cguess[0][1] + " (%" + cguess[0][2] + ") ile" + " " + cguess[0][6] + " " + "sinyallerinde yer alıyor.")
}
if (ran > 4) {
DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, cguess[0][6] + " sinyalinde olan Borsa İstanbul " + cguess[0][1] + " (%" + cguess[0][2] + ") puanındadır.")
}
}
if (cguess[0][6] == "Nötr") {
var ran = Number(String(Math.random() * 1)[3])
if (ran < 5) {
DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, "Borsa İstanbul " + cguess[0][1] + " (%" + cguess[0][2] + ") ile" + " " + cguess[0][6] + " " + "trendindedir.")
}
if (ran > 4) {
DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, cguess[0][6] + " ile Borsa İstanbul " + cguess[0][1] + " %" + cguess[0][2] + "'dir.")
}
}
}
else if (lang == "en") {
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, "Exchange Istanbul " + "(signalling " + altobuy(cguess[0][6]) + ")" + " is moving with " + cguess[0][1] + ", " + gainorlose(cguess[0][2]) + ".")
}
DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().insertParagraph(0, "")
}
////3 others
// if (r[0] == 'KOZALKOZA ALTIN İŞLETMELERİ A.Ş.') {
// first = ff
// let symbol = "KOZAL"
// let link = "KOZAL"
// colafterrow(symbol,link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link + " ")
// }
// if (r[0] == 'OTKAROTOKAR OTOMOTİV VE SAVUNMA SANAYİ A.Ş.') {
// first = ff
// let symbol = "OTKAR hisse senedi"
// let link = "OTKAR"
// colafterrow(symbol,link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link + " ")
// }
// if (r[0] == 'TTKOMTÜRK TELEKOMÜNİKASYON A.Ş.') {
// first = ff
// let symbol = "TTKOM hisse"
// let link = "TTKOM"
// colafterrow(symbol,link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link + " ")
// }
// //3 others
// if (r[0] == 'EREGLEREĞLİ DEMİR VE ÇELİK FABRİKALARI T.A.Ş.') {
// first = ff
// let symbol = "EREGL hisse"
// let link = "EREGL"
// colafterrow(symbol,link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link + " ")
// }
// if (r[0] == 'SISETÜRKİYE ŞİŞE VE CAM FABRİKALARI A.Ş.') {
// first = ff
// let symbol = "SISE"
// let link = "SISE"
// colafterrow(symbol,link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link + " ")
// }
// if (r[0] == 'TUPRSTÜPRAŞ-TÜRKİYE PETROL RAFİNERİLERİ A.Ş.') {
// first = ff
// let symbol = "TUPRS hisse grafik"
// let link = "TUPRS"
// colafterrow(symbol,link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link + " ")
// }
// //3 others
if (r[0] == 'PETKMPETKİM PETROKİMYA HOLDİNG A.Ş.') {
first = ff
let symbol = "PETKM"
let link = "PETKM"
colafterrow(symbol,link, ff)
DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link + " ")
}
if (r[0] == 'SASASASA POLYESTER SANAYİ A.Ş.') {
first = ff
let symbol = "SASA"
let link = "SASA"
colafterrow(symbol,link, ff)
DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link + " ")
}
if (r[0] == 'QO1!GALTIN (MINI) VADELILERI') {
first = ff
let symbol = "XAUTRYG"
let link = "XAUTRYG"
colafterrow(symbol,link, ff)
DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link + " ")
}
// // //3 others
// if (r[0] == 'KRDMDKARDEMİR KARABÜK DEMİR ÇELİK SANAYİ VE TİCARET A.Ş.') {
// first = ff
// let symbol = "KRDMD"
// let link = "KRDMD"
// colafterrow(symbol,link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link + " ")
// }
// if (r[0] == 'THYAOTÜRK HAVA YOLLARI A.O.') {
// first = ff
// let symbol = "THYAO"
// let link = "THYAO"
// colafterrow(symbol,link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link + " ")
// }
// if (r[0] == 'GARANTÜRKİYE GARANTİ BANKASI A.Ş.') {
// first = ff
// let symbol = "GARAN"
// let link = "GARAN"
// colafterrow(symbol,link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link + " ")
// }
// //3 others
// // if (r[0] == 'ASELSASELSAN ELEKTRONİK SANAYİ VE TİCARET A.Ş.') {
// // first = ff
// // let symbol = "Aselsan hisse grafik"
// // let link = "ASELS"
// // colafterrow(symbol, link, ff)
// // DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link + " ")
// // }
// if (r[0] == 'DXYABD DOLAR ENDEKSI') {
// first = ff
// let cguess = ws1.getRange(ff, 1, 1, 200).getValues()
// let symbol = "Dolar endeksi"
// let link = "DXY"
// colafterrow(symbol,link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link + " ")
// }
// if (r[0] == 'USDTRYABD DOLARI / TÜRK LIRASI') {
// first = ff
// let symbol = "USD TRY"
// let link = "USDTRY"
// colafterrow(symbol,link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link + " ")
// }
// //3 others
// if (r[0] == 'GSRAYGALATASARAY SPORTİF SINAİ VE TİCARİ YATIRIMLAR A.Ş.') {
// first = ff
// let symbol = "GSRAY hisse"
// let link = "GSRAY"
// colafterrow(symbol,link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link + ", ")
// }
// if (r[0] == 'BJKASBEŞİKTAŞ FUTBOL YATIRIMLARI SANAYİ VE TİCARET A.Ş.') {
// first = ff
// let symbol = "BJKAS"
// let link = "BJKAS"
// colafterrow(symbol,link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link + " ve ")
// }
// if (r[0] == 'TSPORTRABZONSPOR SPORTİF YATIRIM VE FUTBOL İŞLETMECİLİĞİ TİCARET A.Ş.') {
// first = ff
// let symbol = "TSPOR hisse grafik"
// let link = "TSPOR"
// colafterrow(symbol,link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link + " ")
// }
// //3 others
// if (r[0] == 'BBTCUSDBITCOIN / DOLAR' || r[0] == 'BTCUSDBITCOIN / DOLAR') {
// first = ff
// let symbol = "BTC USD"
// let link = "BTCUSD"
// colafterrow(symbol,link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, "Bitcoin" + " ")
// }
// if (r[0] == 'EETHUSDTETHEREUM / TETHER USD') {
// first = ff
// let symbol = "ETH USD"
// let link = "ETHUSD"
// colafterrow(symbol,link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, "Ethereum" + " ")
// }
// if (r[0] == 'SSOLUSDTSOLANA / TETHER USD') {
// first = ff
// let symbol = "SOL USDT"
// let link = "SOLUSDT"
// colafterrow(symbol,link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, "Solana" + " ")
// }
// if (r[0] == 'C98USDTCOIN98 / TETHER') {
// first = ff
// let symbol = "C98USDT"
// let link = "C98USDT"
// colafterrow(symbol,link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, "C98USDT" + " ")
// }
// //3 others
// if (r[0] == 'ASELSASELSAN ELEKTRONİK SANAYİ VE TİCARET A.Ş.') {
// first = ff
// let symbol = "Aselsan hisse grafik"
// let link = "ASELS"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link + " ")
// }
// if (r[0] == 'XU100BIST 100 ENDEKSI') {
// first = ff
// let symbol = "BIST 100"
// let link = "XU100"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link + " ")
// }
// if (r[0] == 'DOHOLDOĞAN ŞİRKETLER GRUBU HOLDİNG A.Ş.') {
// first = ff
// let symbol = "DOHOL"
// let link = "DOHOL"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link + " ")
// }
// //3 others
// if (r[0] == 'FROTOFORD OTOMOTİV SANAYİ A.Ş.') {
// first = ff
// let symbol = "FROTO hisse"
// let link = "FROTO"
// colafterrow(symbol,link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link + " ")
// }
// if (r[0] == 'VESBEVESTEL BEYAZ EŞYA SANAYİ VE TİCARET A.Ş.') {
// first = ff
// let symbol = "VESBE hisse grafik"
// let link = "VESBE"
// colafterrow(symbol,link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link + " ")
// }
// if (r[0] == 'ZORENZORLU ENERJİ ELEKTRİK ÜRETİM A.Ş.') {
// first = ff
// let symbol = "ZOREN"
// let link = "ZOREN"
// colafterrow(symbol,link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link + " ")
// }
// if (r[0] == 'XXECUSDTXEC / TETHERUS') {
// first = ff
// let symbol = "XECUSD"
// let link = "XECUSD"
// colafterrow(symbol,link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link + " ")
// }
// //3 others OVER newones 1
// if (r[0] == "EDATAE-DATA TEKNOLOJI")
// { first = ff
// let symbol ="EDATA"
// let link ="EDATA"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "KENTKENT GIDA MADDELERİ SANAYİİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="KENT"
// let link ="KENT"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "DITASDİTAŞ DOĞAN YEDEK PARÇA İMALAT VE TEKNİK A.Ş.")
// { first = ff
// let symbol ="DITAS"
// let link ="DITAS"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "FENERFENERBAHÇE FUTBOL A.Ş.")
// { first = ff
// let symbol ="FENER"
// let link ="FENER"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "KONYAKONYA ÇİMENTO SANAYİİ A.Ş.")
// { first = ff
// let symbol ="KONYA"
// let link ="KONYA"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "SANFMSANİFOAM SÜNGER SANAYİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="SANFM"
// let link ="SANFM"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "TETMTTETAMAT GIDA")
// { first = ff
// let symbol ="TETMT"
// let link ="TETMT"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "DURDODURAN DOĞAN BASIM VE AMBALAJ SANAYİ A.Ş.")
// { first = ff
// let symbol ="DURDO"
// let link ="DURDO"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "EPLASEGEPLAST EGE PLASTİK TİCARET VE SANAYİ A.Ş.")
// { first = ff
// let symbol ="EPLAS"
// let link ="EPLAS"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "PENTAPENTA TEKNOLOJI URUNLERI DAGITIM")
// { first = ff
// let symbol ="PENTA"
// let link ="PENTA"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "SRVGYSERVET GAYRİMENKUL YATIRIM ORTAKLIĞI A.Ş.")
// { first = ff
// let symbol ="SRVGY"
// let link ="SRVGY"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "ATEKSAKIN TEKSTİL A.Ş.")
// { first = ff
// let symbol ="ATEKS"
// let link ="ATEKS"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "EGGUBEGE GÜBRE SANAYİİ A.Ş.")
// { first = ff
// let symbol ="EGGUB"
// let link ="EGGUB"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "SELGDSELÇUK GIDA ENDÜSTRİ İHRACAT İTHALAT A.Ş.")
// { first = ff
// let symbol ="SELGD"
// let link ="SELGD"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "ATATPATP BILGISAYAR")
// { first = ff
// let symbol ="ATATP"
// let link ="ATATP"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "DOBURDOĞAN BURDA DERGİ YAYINCILIK VE PAZARLAMA A.Ş.")
// { first = ff
// let symbol ="DOBUR"
// let link ="DOBUR"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "RALYHRAL YATIRIM HOLDING")
// { first = ff
// let symbol ="RALYH"
// let link ="RALYH"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "PRKABTÜRK PRYSMİAN KABLO VE SİSTEMLERİ A.Ş.")
// { first = ff
// let symbol ="PRKAB"
// let link ="PRKAB"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "BMSCHBMS CELIK HASIR")
// { first = ff
// let symbol ="BMSCH"
// let link ="BMSCH"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "ULUUNULUSOY UN SANAYİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="ULUUN"
// let link ="ULUUN"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "IHAASIHLAS HABER AJANSI")
// { first = ff
// let symbol ="IHAAS"
// let link ="IHAAS"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "KUYASKUYUMCUKENT GAYRİMENKUL YATIRIMLARI A.Ş. REIT")
// { first = ff
// let symbol ="KUYAS"
// let link ="KUYAS"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "FRIGOFRİGO-PAK GIDA MADDELERİ SANAYİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="FRIGO"
// let link ="FRIGO"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "GESANGIRISIM ELEKTRIK SANAYI")
// { first = ff
// let symbol ="GESAN"
// let link ="GESAN"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "GSDHOGSD HOLDİNG A.Ş.")
// { first = ff
// let symbol ="GSDHO"
// let link ="GSDHO"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "EGEPONASMED EGEPOL")
// { first = ff
// let symbol ="EGEPO"
// let link ="EGEPO"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "AVODA.V.O.D. KURUTULMUŞ GIDA VE TARIM ÜRÜNLERİ A.Ş.")
// { first = ff
// let symbol ="AVOD"
// let link ="AVOD"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "TUREXTUREKS TURIZM TASIMACILIK")
// { first = ff
// let symbol ="TUREX"
// let link ="TUREX"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "TUKASTUKAŞ GIDA SANAYİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="TUKAS"
// let link ="TUKAS"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "DGGYODOĞUŞ GAYRİMENKUL YATIRIM ORTAKLIĞI A.Ş. REIT")
// { first = ff
// let symbol ="DGGYO"
// let link ="DGGYO"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "MERKOMERKO GIDA SANAYİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="MERKO"
// let link ="MERKO"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "SODSNSODAŞ SODYUM SANAYİİ A.Ş.")
// { first = ff
// let symbol ="SODSN"
// let link ="SODSN"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "PETUNPINAR ENTEGRE ET VE UN SANAYİİ A.Ş.")
// { first = ff
// let symbol ="PETUN"
// let link ="PETUN"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "TOASOTOFAŞ TÜRK OTOMOBİL FABRİKASI A.Ş.")
// { first = ff
// let symbol ="TOASO"
// let link ="TOASO"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "OZRDNÖZERDEN PLASTİK SANAYİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="OZRDN"
// let link ="OZRDN"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "TIREMONDİ TİRE KUTSAN KAĞIT VE AMBALAJ SANAYİ A.Ş.")
// { first = ff
// let symbol ="TIRE"
// let link ="TIRE"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "INTEMİNTEMA İNŞAAT VE TESİSAT MALZEMELERİ YATIRIM VE PAZARLAMA A.Ş.")
// { first = ff
// let symbol ="INTEM"
// let link ="INTEM"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "KLKIMKALEKIM KIMYEVI MADDELER")
// { first = ff
// let symbol ="KLKIM"
// let link ="KLKIM"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "PENGDPENGUEN GIDA SANAYİ A.Ş.")
// { first = ff
// let symbol ="PENGD"
// let link ="PENGD"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "GLBMDGLOBAL MENKUL DEĞERLER A.Ş.")
// { first = ff
// let symbol ="GLBMD"
// let link ="GLBMD"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "KAPLMKAPLAMİN AMBALAJ SANAYİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="KAPLM"
// let link ="KAPLM"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "BIZIMBİZİM TOPTAN SATIŞ MAĞAZALARI A.Ş.")
// { first = ff
// let symbol ="BIZIM"
// let link ="BIZIM"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "MEDTRMEDITERA TIBBI MALZEME")
// { first = ff
// let symbol ="MEDTR"
// let link ="MEDTR"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "KERVTKEREVİTAŞ GIDA SANAYİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="KERVT"
// let link ="KERVT"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "PRKMEPARK ELEKTRİK ÜRETİM MADENCİLİK SANAYİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="PRKME"
// let link ="PRKME"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "BFRENBOSCH FREN SİSTEMLERİ SANAYİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="BFREN"
// let link ="BFREN"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "GSDDEGSD DENİZCİLİK GAYRİMENKUL İNŞAAT SANAYİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="GSDDE"
// let link ="GSDDE"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "CELHAÇELİK HALAT VE TEL SANAYİİ A.Ş.")
// { first = ff
// let symbol ="CELHA"
// let link ="CELHA"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "LIDFALİDER FAKTORİNG A.Ş.")
// { first = ff
// let symbol ="LIDFA"
// let link ="LIDFA"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "MZHLDMAZHAR ZORLU HOLDİNG A.Ş.")
// { first = ff
// let symbol ="MZHLD"
// let link ="MZHLD"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "YBTASYİBİTAŞ YOZGAT İŞÇİ BİRLİĞİ İNŞAAT MALZEMELERİ TİCARET VE SANAYİ A.Ş.")
// { first = ff
// let symbol ="YBTAS"
// let link ="YBTAS"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "IZFASİZMİR FIRÇA SANAYİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="IZFAS"
// let link ="IZFAS"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "BURVABURÇELİK VANA SANAYİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="BURVA"
// let link ="BURVA"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "TATGDTAT GIDA SANAYİ A.Ş.")
// { first = ff
// let symbol ="TATGD"
// let link ="TATGD"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "VERTUVERUSATURK GİRİŞİM SERMAYESİ YATIRIM ORTAKLIĞI A.Ş.")
// { first = ff
// let symbol ="VERTU"
// let link ="VERTU"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "CRFSACARREFOURSA CARREFOUR SABANCI TİCARET MERKEZİ A.Ş.")
// { first = ff
// let symbol ="CRFSA"
// let link ="CRFSA"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "SAYASSAY REKLAMCILIK YAPI DEKORASYON PROJE TAAHHÜT SANAYİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="SAYAS"
// let link ="SAYAS"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "DEVADEVA HOLDİNG A.Ş.")
// { first = ff
// let symbol ="DEVA"
// let link ="DEVA"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "TMPOLTEMAPOL POLİMER PLASTİK VE İNŞAAT SANAYİ TİCARET A.Ş.")
// { first = ff
// let symbol ="TMPOL"
// let link ="TMPOL"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "IZMDCİZMİR DEMİR ÇELİK SANAYİ A.Ş.")
// { first = ff
// let symbol ="IZMDC"
// let link ="IZMDC"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "INFOİNFO YATIRIM MENKUL DEĞERLER A.Ş.")
// { first = ff
// let symbol ="INFO"
// let link ="INFO"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "QUAGRQUA GRANITE HAYAL YAPI")
// { first = ff
// let symbol ="QUAGR"
// let link ="QUAGR"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "ANELEANEL ELEKTRİK PROJE TAAHHÜT VE TİCARET A.Ş.")
// { first = ff
// let symbol ="ANELE"
// let link ="ANELE"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "CEMASÇEMAŞ DÖKÜM SANAYİ A.Ş.")
// { first = ff
// let symbol ="CEMAS"
// let link ="CEMAS"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "ARSANARSAN TEKSTİL TİCARET VE SANAYİ A.Ş.")
// { first = ff
// let symbol ="ARSAN"
// let link ="ARSAN"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "VAKKOVAKKO TEKSTİL VE HAZIR GİYİM SANAYİ İŞLETMELERİ A.Ş.")
// { first = ff
// let symbol ="VAKKO"
// let link ="VAKKO"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "HATEKHATEKS HATAY TEKSTİL İŞLETMELERİ A.Ş.")
// { first = ff
// let symbol ="HATEK"
// let link ="HATEK"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "SAMATSARAY MATBAACILIK KAĞITÇILIK KIRTASİYECİLİK TİCARET VE SANAYİ A.Ş.")
// { first = ff
// let symbol ="SAMAT"
// let link ="SAMAT"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "ANGENANATOLIA TANI VE BIYOTEKNOLOJI")
// { first = ff
// let symbol ="ANGEN"
// let link ="ANGEN"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "VANGDVANET GIDA SANAYİ İÇ VE DIŞ TİCARET A.Ş.")
// { first = ff
// let symbol ="VANGD"
// let link ="VANGD"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "UNLUUNLU YATIRIM HOLDING")
// { first = ff
// let symbol ="UNLU"
// let link ="UNLU"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "ARMDAARMADA BİLGİSAYAR SİSTEMLERİ SANAYİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="ARMDA"
// let link ="ARMDA"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "OSMENOSMANLI YATIRIM MENKUL DEĞERLER A.Ş.")
// { first = ff
// let symbol ="OSMEN"
// let link ="OSMEN"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "RAYSGRAY SİGORTA A.Ş.")
// { first = ff
// let symbol ="RAYSG"
// let link ="RAYSG"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "FADEFADE GIDA")
// { first = ff
// let symbol ="FADE"
// let link ="FADE"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "BLCYTBİLİCİ YATIRIM SANAYİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="BLCYT"
// let link ="BLCYT"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "PNSUTPINAR SÜT MAMULLERİ SANAYİİ A.Ş.")
// { first = ff
// let symbol ="PNSUT"
// let link ="PNSUT"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "AKSENAKSA ENERJİ ÜRETİM A.Ş.")
// { first = ff
// let symbol ="AKSEN"
// let link ="AKSEN"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "KRDMAKARDEMİR KARABÜK DEMİR ÇELİK SANAYİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="KRDMA"
// let link ="KRDMA"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// // newones 11
// if (r[0] == "NETASNETAŞ TELEKOMÜNİKASYON A.Ş.")
// { first = ff
// let symbol ="NETAS"
// let link ="NETAS"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "VKINGVİKİNG KAĞIT VE SELÜLOZ A.Ş.")
// { first = ff
// let symbol ="VKING"
// let link ="VKING"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "AKMGYAKMERKEZ GAYRİMENKUL YATIRIM ORTAKLIĞI A.Ş. REIT")
// { first = ff
// let symbol ="AKMGY"
// let link ="AKMGY"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "DESADESA DERİ SANAYİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="DESA"
// let link ="DESA"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "TKNSATEKNOSA İÇ VE DIŞ TİCARET A.Ş.")
// { first = ff
// let symbol ="TKNSA"
// let link ="TKNSA"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "OZGYOÖZDERİCİ GAYRİMENKUL YATIRIM ORTAKLIĞI A.Ş. REIT")
// { first = ff
// let symbol ="OZGYO"
// let link ="OZGYO"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "FROTOFORD OTOMOTİV SANAYİ A.Ş.")
// { first = ff
// let symbol ="FROTO"
// let link ="FROTO"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "MAALTMARMARİS ALTINYUNUS TURİSTİK TESİSLER A.Ş.")
// { first = ff
// let symbol ="MAALT"
// let link ="MAALT"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "ARENAARENA BİLGİSAYAR SANAYİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="ARENA"
// let link ="ARENA"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "ISGSYİŞ GİRİŞİM SERMAYESİ YATIRIM ORTAKLIĞI A.Ş.")
// { first = ff
// let symbol ="ISGSY"
// let link ="ISGSY"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "KRDMBKARDEMİR KARABÜK DEMİR ÇELİK SANAYİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="KRDMB"
// let link ="KRDMB"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "ERBOSERBOSAN ERCİYAS BORU SANAYİİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="ERBOS"
// let link ="ERBOS"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "CMBTNÇİMBETON HAZIRBETON VE PREFABRİK YAPI ELEMANLARI SANAYİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="CMBTN"
// let link ="CMBTN"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "FMIZPFEDERAL-MOGUL İZMİT PİSTON VE PİM ÜRETİM TESİSLERİ A.Ş.")
// { first = ff
// let symbol ="FMIZP"
// let link ="FMIZP"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "BURCEBURÇELİK BURSA ÇELİK DÖKÜM SANAYİİ A.Ş.")
// { first = ff
// let symbol ="BURCE"
// let link ="BURCE"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "TEKTUTEK-ART İNŞAAT TİCARET TURİZM SANAYİ VE YATIRIMLAR A.Ş.")
// { first = ff
// let symbol ="TEKTU"
// let link ="TEKTU"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "KSTURKUŞTUR KUŞADASI TURİZM ENDÜSTRİ A.Ş.")
// { first = ff
// let symbol ="KSTUR"
// let link ="KSTUR"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "KARTNKARTONSAN KARTON SANAYİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="KARTN"
// let link ="KARTN"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "CMENTÇİMENTAŞ İZMİR ÇİMENTO FABRİKASI T.A.Ş.")
// { first = ff
// let symbol ="CMENT"
// let link ="CMENT"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "CUSANÇUHADAROĞLU METAL SANAYİ VE PAZARLAMA A.Ş.")
// { first = ff
// let symbol ="CUSAN"
// let link ="CUSAN"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "BRKSNBERKOSAN YALITIM VE TECRİT MADDELERİ ÜRETİM VE TİCARET A.Ş.")
// { first = ff
// let symbol ="BRKSN"
// let link ="BRKSN"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "MEGAPMEGA POLİETİLEN KÖPÜK SANAYİ A.Ş.")
// { first = ff
// let symbol ="MEGAP"
// let link ="MEGAP"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "ISDMRİSKENDERUN DEMİR VE ÇELİK A.Ş.")
// { first = ff
// let symbol ="ISDMR"
// let link ="ISDMR"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "MNDRSMENDERES TEKSTİL SANAYİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="MNDRS"
// let link ="MNDRS"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "SNPAMSÖNMEZ PAMUKLU SANAYİİ A.Ş.")
// { first = ff
// let symbol ="SNPAM"
// let link ="SNPAM"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "YUNSAYÜNSA YÜNLÜ SANAYİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="YUNSA"
// let link ="YUNSA"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "OZBALÖZBAL ÇELİK BORU SANAYİ TİCARET VE TAAHHÜT A.Ş.")
// { first = ff
// let symbol ="OZBAL"
// let link ="OZBAL"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "MAKTKMAKİNA TAKIM ENDÜSTRİSİ A.Ş.")
// { first = ff
// let symbol ="MAKTK"
// let link ="MAKTK"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "LOGOLOGO YAZILIM SANAYİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="LOGO"
// let link ="LOGO"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "SAFKRSAFKAR EGE SOGUTMACILIK")
// { first = ff
// let symbol ="SAFKR"
// let link ="SAFKR"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "KUTPOKÜTAHYA PORSELEN SANAYİ A.Ş.")
// { first = ff
// let symbol ="KUTPO"
// let link ="KUTPO"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "ACSELACISELSAN ACIPAYAM SELÜLOZ SANAYİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="ACSEL"
// let link ="ACSEL"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "DYOBYDYO BOYA FABRİKALARI SANAYİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="DYOBY"
// let link ="DYOBY"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "BRISABRİSA BRIDGESTONE SABANCI LASTİK SANAYİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="BRISA"
// let link ="BRISA"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "IHLASİHLAS HOLDİNG A.Ş.")
// { first = ff
// let symbol ="IHLAS"
// let link ="IHLAS"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "ICBCTICBC TURKEY BANK A.Ş.")
// { first = ff
// let symbol ="ICBCT"
// let link ="ICBCT"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "ESCARESCAR TURIZM TASIMACILIK")
// { first = ff
// let symbol ="ESCAR"
// let link ="ESCAR"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "VBTYZVBT YAZILIM")
// { first = ff
// let symbol ="VBTYZ"
// let link ="VBTYZ"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "GOODYGOODYEAR LASTİKLERİ T.A.Ş.")
// { first = ff
// let symbol ="GOODY"
// let link ="GOODY"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "BNTASBANTAŞ BANDIRMA AMBALAJ SANAYİ TİCARET A.Ş.")
// { first = ff
// let symbol ="BNTAS"
// let link ="BNTAS"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "TSGYOTSKB GAYRİMENKUL YATIRIM ORTAKLIĞI A.Ş. REIT")
// { first = ff
// let symbol ="TSGYO"
// let link ="TSGYO"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "BRSANBORUSAN MANNESMANN BORU SANAYİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="BRSAN"
// let link ="BRSAN"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "AYENAYEN ENERJİ A.Ş.")
// { first = ff
// let symbol ="AYEN"
// let link ="AYEN"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "PARSNPARSAN MAKİNA PARÇALARI SANAYİİ A.Ş.")
// { first = ff
// let symbol ="PARSN"
// let link ="PARSN"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "ALCARALARKO CARRIER SANAYİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="ALCAR"
// let link ="ALCAR"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "AGESAAGESA HAYAT EMEKLILIK")
// { first = ff
// let symbol ="AGESA"
// let link ="AGESA"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "RODRGRODRİGO TEKSTİL SANAYİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="RODRG"
// let link ="RODRG"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "BRYATBORUSAN YATIRIM VE PAZARLAMA A.Ş.")
// { first = ff
// let symbol ="BRYAT"
// let link ="BRYAT"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "GLYHOGLOBAL YATIRIM HOLDİNG A.Ş.")
// { first = ff
// let symbol ="GLYHO"
// let link ="GLYHO"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "BAYRKBAYRAK TABAN SANAYI")
// { first = ff
// let symbol ="BAYRK"
// let link ="BAYRK"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "NATENNATUREL ENERJI")
// { first = ff
// let symbol ="NATEN"
// let link ="NATEN"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "BAKABBAK AMBALAJ SANAYİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="BAKAB"
// let link ="BAKAB"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "ECZYTECZACIBAŞI YATIRIM HOLDİNG ORTAKLIĞI A.Ş.")
// { first = ff
// let symbol ="ECZYT"
// let link ="ECZYT"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "LUKSKLÜKS KADİFE TİCARET VE SANAYİİ A.Ş.")
// { first = ff
// let symbol ="LUKSK"
// let link ="LUKSK"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "CIMSAÇİMSA ÇİMENTO SANAYİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="CIMSA"
// let link ="CIMSA"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "NIBASNİĞBAŞ NİĞDE BETON SANAYİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="NIBAS"
// let link ="NIBAS"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "EGPROEGE PROFİL TİCARET VE SANAYİ A.Ş.")
// { first = ff
// let symbol ="EGPRO"
// let link ="EGPRO"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "EGEENEGE ENDÜSTRİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="EGEEN"
// let link ="EGEEN"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "IDGYOİDEALİST GAYRİMENKUL YATIRIM ORTAKLIĞI A.Ş. REIT")
// { first = ff
// let symbol ="IDGYO"
// let link ="IDGYO"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "TTRAKTÜRK TRAKTÖR VE ZİRAAT MAKİNELERİ A.Ş.")
// { first = ff
// let symbol ="TTRAK"
// let link ="TTRAK"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "POLHOPOLİSAN HOLDİNG A.Ş.")
// { first = ff
// let symbol ="POLHO"
// let link ="POLHO"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "KRSTLKRİSTAL KOLA VE MEŞRUBAT SANAYİ TİCARET A.Ş.")
// { first = ff
// let symbol ="KRSTL"
// let link ="KRSTL"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "KRVGDKERVAN GIDA")
// { first = ff
// let symbol ="KRVGD"
// let link ="KRVGD"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "DERHLDERLUKS YATIRIM HOLDING")
// { first = ff
// let symbol ="DERHL"
// let link ="DERHL"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "UZERBUZERTAŞ BOYA SANAYİ TİCARET VE YATIRIM A.Ş.")
// { first = ff
// let symbol ="UZERB"
// let link ="UZERB"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "RYSASREYSAŞ TAŞIMACILIK VE LOJİSTİK TİCARET A.Ş.")
// { first = ff
// let symbol ="RYSAS"
// let link ="RYSAS"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "SMARTSMARTIKS YAZILIM")
// { first = ff
// let symbol ="SMART"
// let link ="SMART"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "SANKOSANKO PAZARLAMA İTHALAT İHRACAT A.Ş.")
// { first = ff
// let symbol ="SANKO"
// let link ="SANKO"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "ERSUERSU MEYVE VE GIDA SANAYİ A.Ş.")
// { first = ff
// let symbol ="ERSU"
// let link ="ERSU"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "TRCASTURCAS PETROL A.Ş.")
// { first = ff
// let symbol ="TRCAS"
// let link ="TRCAS"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "PAPILPAPILON SAVUNMA")
// { first = ff
// let symbol ="PAPIL"
// let link ="PAPIL"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "YAYLAYAYLA ENERJİ ÜRETİM TURİZM VE İNŞAAT TİCARET A.Ş.")
// { first = ff
// let symbol ="YAYLA"
// let link ="YAYLA"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "ALKAALKİM KAĞIT SANAYİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="ALKA"
// let link ="ALKA"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "DNISIDINAMIK ISI MAKINA YALITIM")
// { first = ff
// let symbol ="DNISI"
// let link ="DNISI"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "DENGEDENGE YATIRIM HOLDİNG A.Ş.")
// { first = ff
// let symbol ="DENGE"
// let link ="DENGE"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "VKGYOVAKIF GAYRİMENKUL YATIRIM ORTAKLIĞI A.Ş. REIT")
// { first = ff
// let symbol ="VKGYO"
// let link ="VKGYO"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "BSOKEBATISÖKE SÖKE ÇİMENTO SANAYİİ T.A.Ş.")
// { first = ff
// let symbol ="BSOKE"
// let link ="BSOKE"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "SNGYOSİNPAŞ GAYRİMENKUL YATIRIM ORTAKLIĞI A.Ş. REIT")
// { first = ff
// let symbol ="SNGYO"
// let link ="SNGYO"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "YAPRKYAPRAK SÜT VE BESİ ÇİFTLİKLERİ SANAYİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="YAPRK"
// let link ="YAPRK"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "AVGYOAVRASYA GAYRİMENKUL YATIRIM ORTAKLIĞI A.Ş.")
// { first = ff
// let symbol ="AVGYO"
// let link ="AVGYO"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// // newones 22
// if (r[0] == "ALCTLALCATEL LUCENT TELETAŞ TELEKOMÜNİKASYON A.Ş.")
// { first = ff
// let symbol ="ALCTL"
// let link ="ALCTL"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "TRILCTURK ILAC SERUM")
// { first = ff
// let symbol ="TRILC"
// let link ="TRILC"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "DOKTADOKTAS DOKUMCULUK")
// { first = ff
// let symbol ="DOKTA"
// let link ="DOKTA"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "VERUSVERUSA HOLDİNG A.Ş.")
// { first = ff
// let symbol ="VERUS"
// let link ="VERUS"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "DAGHLDAGİ YATIRIM HOLDİNG A.Ş.")
// { first = ff
// let symbol ="DAGHL"
// let link ="DAGHL"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "PAGYOPANORA GAYRİMENKUL YATIRIM ORTAKLIĞI A.Ş.")
// { first = ff
// let symbol ="PAGYO"
// let link ="PAGYO"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "DERIMDERİMOD KONFEKSİYON AYAKKABI DERİ SANAYİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="DERIM"
// let link ="DERIM"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "INVEOINVEO YATIRIM HOLDING")
// { first = ff
// let symbol ="INVEO"
// let link ="INVEO"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "KRGYOKÖRFEZ GAYRİMENKUL YATIRIM ORTAKLIĞI A.Ş. REIT")
// { first = ff
// let symbol ="KRGYO"
// let link ="KRGYO"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "CEMTSÇEMTAŞ ÇELİK MAKİNA SANAYİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="CEMTS"
// let link ="CEMTS"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "AKENRAKENERJİ ELEKTRİK ÜRETİM A.Ş.")
// { first = ff
// let symbol ="AKENR"
// let link ="AKENR"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "KNFRTKONFRUT GIDA SANAYİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="KNFRT"
// let link ="KNFRT"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "GUBRFGÜBRE FABRİKALARI T.A.Ş.")
// { first = ff
// let symbol ="GUBRF"
// let link ="GUBRF"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "LINKLİNK BİLGİSAYAR SİSTEMLERİ YAZILIMI VE DONANIMI SANAYİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="LINK"
// let link ="LINK"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "KFEINKAFEIN YAZILIM")
// { first = ff
// let symbol ="KFEIN"
// let link ="KFEIN"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "OZKGYÖZAK GAYRİMENKUL YATIRIM ORTAKLIĞI A.Ş. REIT")
// { first = ff
// let symbol ="OZKGY"
// let link ="OZKGY"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "DARDLDARDANEL ÖNENTAŞ GIDA SANAYİ A.Ş.")
// { first = ff
// let symbol ="DARDL"
// let link ="DARDL"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "BOSSABOSSA TİCARET VE SANAYİ İŞLETMELERİ T.A.Ş.")
// { first = ff
// let symbol ="BOSSA"
// let link ="BOSSA"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "HDFGSHEDEF GİRİŞİM SERMAYESİ YATIRIM ORTAKLIĞI A.Ş.")
// { first = ff
// let symbol ="HDFGS"
// let link ="HDFGS"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "ENKAIENKA İNŞAAT VE SANAYİ A.Ş.")
// { first = ff
// let symbol ="ENKAI"
// let link ="ENKAI"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "JANTSJANTSA JANT SANAYİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="JANTS"
// let link ="JANTS"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "TURGGTÜRKER PROJE GAYRİMENKUL VE YATIRIM GELİŞTİRME A.Ş.")
// { first = ff
// let symbol ="TURGG"
// let link ="TURGG"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "TEZOLEUROPAP TEZOL KAGIT")
// { first = ff
// let symbol ="TEZOL"
// let link ="TEZOL"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "ODASODAŞ ELEKTRİK ÜRETİM SANAYİ TİCARET A.Ş.")
// { first = ff
// let symbol ="ODAS"
// let link ="ODAS"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "GEDZAGEDİZ AMBALAJ SANAYİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="GEDZA"
// let link ="GEDZA"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "IHGZTİHLAS GAZETECİLİK A.Ş.")
// { first = ff
// let symbol ="IHGZT"
// let link ="IHGZT"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "EGSEREGE SERAMİK SANAYİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="EGSER"
// let link ="EGSER"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "ARCLKARÇELİK A.Ş.")
// { first = ff
// let symbol ="ARCLK"
// let link ="ARCLK"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "BRLSMBIRLESIM MUHENDISLIK")
// { first = ff
// let symbol ="BRLSM"
// let link ="BRLSM"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "USAKUŞAK SERAMİK SANAYİİ A.Ş.")
// { first = ff
// let symbol ="USAK"
// let link ="USAK"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "GERELGERSAN ELEKTRİK TİCARET VE SANAYİ A.Ş.")
// { first = ff
// let symbol ="GEREL"
// let link ="GEREL"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "SEKFKŞEKER FİNANSAL KİRALAMA A.Ş.")
// { first = ff
// let symbol ="SEKFK"
// let link ="SEKFK"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "METROMETRO TİCARİ VE MALİ YATIRIMLAR HOLDİNG A.Ş.")
// { first = ff
// let symbol ="METRO"
// let link ="METRO"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "YGYOYEŞİL GAYRİMENKUL YATIRIM ORTAKLIĞI A.Ş. REIT")
// { first = ff
// let symbol ="YGYOY"
// let link ="YGYOY"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "KARELKAREL ELEKTRONİK SANAYİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="KAREL"
// let link ="KAREL"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "ZELOTZIRAAT PORTFOY BIST 50-30 HY BYF BYF")
// { first = ff
// let symbol ="ZELOT"
// let link ="ZELOT"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "AVTURAVRASYA PETROL VE TURİSTİK TESİSLER YATIRIMLAR A.Ş.")
// { first = ff
// let symbol ="AVTUR"
// let link ="AVTUR"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "KIMMRKIM MARKET-ERSAN ALISVERIS")
// { first = ff
// let symbol ="KIMMR"
// let link ="KIMMR"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "KLGYOKİLER GAYRİMENKUL YATIRIM ORTAKLIĞI A.Ş. REIT")
// { first = ff
// let symbol ="KLGYO"
// let link ="KLGYO"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "KGYOKORAY GMYO REIT")
// { first = ff
// let symbol ="KGYO"
// let link ="KGYO"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "IHLGMİHLAS GAYRİMENKUL PROJE GELİŞTİRME VE TİCARET A.Ş.")
// { first = ff
// let symbol ="IHLGM"
// let link ="IHLGM"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "SARKYSARKUYSAN ELEKTROLİTİK BAKIR SANAYİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="SARKY"
// let link ="SARKY"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "AKSGYAKİŞ GAYRİMENKUL YATIRIM ORTAKLIĞI A.Ş. REIT")
// { first = ff
// let symbol ="AKSGY"
// let link ="AKSGY"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "ESENESENBOGA ELEKTRIK")
// { first = ff
// let symbol ="ESEN"
// let link ="ESEN"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "EMNISEMİNİŞ AMBALAJ SANAYİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="EMNIS"
// let link ="EMNIS"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "TDGYOTREND GMYO")
// { first = ff
// let symbol ="TDGYO"
// let link ="TDGYO"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "MRGYOMARTI GAYRİMENKUL YATIRIM ORTAKLIĞI A.Ş. REIT")
// { first = ff
// let symbol ="MRGYO"
// let link ="MRGYO"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "GLRYHGÜLER YATIRIM HOLDİNG A.Ş.")
// { first = ff
// let symbol ="GLRYH"
// let link ="GLRYH"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "BUCIMBURSA ÇİMENTO FABRİKASI A.Ş.")
// { first = ff
// let symbol ="BUCIM"
// let link ="BUCIM"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "SILVRSİLVERLİNE ENDÜSTRİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="SILVR"
// let link ="SILVR"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "MRSHLMARSHALL BOYA VE VERNİK SANAYİİ A.Ş.")
// { first = ff
// let symbol ="MRSHL"
// let link ="MRSHL"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "KLMSNKLİMASAN KLİMA SANAYİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="KLMSN"
// let link ="KLMSN"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "IHEVAİHLAS EV ALETLERİ İMALAT SANAYİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="IHEVA"
// let link ="IHEVA"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "GENILGEN ILAC")
// { first = ff
// let symbol ="GENIL"
// let link ="GENIL"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "ORGEORGE ENERJİ ELEKTRİK TAAHHÜT A.Ş.")
// { first = ff
// let symbol ="ORGE"
// let link ="ORGE"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "MANASMANAS ENERJI YONETIMI")
// { first = ff
// let symbol ="MANAS"
// let link ="MANAS"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "MSGYOMİSTRAL GAYRİMENKUL YATIRIM ORTAKLIĞI A.Ş. REIT")
// { first = ff
// let symbol ="MSGYO"
// let link ="MSGYO"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "CEOEMCEO EVENT MEDYA")
// { first = ff
// let symbol ="CEOEM"
// let link ="CEOEM"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "OYLUMOYLUM SINAİ YATIRIMLAR A.Ş.")
// { first = ff
// let symbol ="OYLUM"
// let link ="OYLUM"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "BEYAZBEYAZ FİLO OTO KİRALAMA A.Ş.")
// { first = ff
// let symbol ="BEYAZ"
// let link ="BEYAZ"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "MTRKSMATRIKS BILGI DAGITIM")
// { first = ff
// let symbol ="MTRKS"
// let link ="MTRKS"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "TACTRTAÇ TARIM ÜRÜNLERİ HAYVANCILIK GIDA SANAYİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="TACTR"
// let link ="TACTR"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "KONTRKONTROLMATIK TEKNOLOJI")
// { first = ff
// let symbol ="KONTR"
// let link ="KONTR"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "YYAPIYEŞİL YAPI ENDÜSTRİSİ A.Ş.")
// { first = ff
// let symbol ="YYAPI"
// let link ="YYAPI"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "GOLTSGÖLTAŞ GÖLLER BÖLGESİ ÇİMENTO SANAYİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="GOLTS"
// let link ="GOLTS"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "DAGIDAGİ GİYİM SANAYİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="DAGI"
// let link ="DAGI"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "ARZUMARZUM ELEKTRİKLİ EV ALETLERİ SANAYİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="ARZUM"
// let link ="ARZUM"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "GEDIKGEDİK YATIRIM MENKUL DEĞERLER A.Ş.")
// { first = ff
// let symbol ="GEDIK"
// let link ="GEDIK"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "DZGYODENİZ GAYRİMENKUL YATIRIM ORTAKLIĞI A.Ş.")
// { first = ff
// let symbol ="DZGYO"
// let link ="DZGYO"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "AKCNSAKÇANSA ÇİMENTO SANAYİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="AKCNS"
// let link ="AKCNS"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "AGYOATAKULE GAYRİMENKUL YATIRIM ORTAKLIĞI A.Ş. REIT")
// { first = ff
// let symbol ="AGYO"
// let link ="AGYO"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "GWINDGALATA WIND ENERJI")
// { first = ff
// let symbol ="GWIND"
// let link ="GWIND"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "AFYONAFYON ÇİMENTO SANAYİ T.A.Ş.")
// { first = ff
// let symbol ="AFYON"
// let link ="AFYON"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// // newones
// if (r[0] == "SERVESERVE KIRTASİYE SANAYİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="SERVE"
// let link ="SERVE"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "MEPETMEPET METRO PETROL VE TESİSLERİ SANAYİ TİCARET A.Ş.")
// { first = ff
// let symbol ="MEPET"
// let link ="MEPET"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "METURMETEMTUR OTELCİLİK VE TURİZM İŞLETMELERİ A.Ş.")
// { first = ff
// let symbol ="METUR"
// let link ="METUR"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "HUBVCHUB GIRISIM")
// { first = ff
// let symbol ="HUBVC"
// let link ="HUBVC"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "DOGUBDOĞUSAN BORU SANAYİİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="DOGUB"
// let link ="DOGUB"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "DMSASDEMİSAŞ DÖKÜM EMAYE MAMÜLLERİ SANAYİİ A.Ş.")
// { first = ff
// let symbol ="DMSAS"
// let link ="DMSAS"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "RYGYOREYSAŞ GAYRİMENKUL YATIRIM ORTAKLIĞI A.Ş. REIT")
// { first = ff
// let symbol ="RYGYO"
// let link ="RYGYO"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "DGKLBDOĞTAŞ KELEBEK MOBİLYA SANAYİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="DGKLB"
// let link ="DGKLB"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "Z30KPZIRAAT PORTFOY KATILIM 30 ENDEKSI HSY BYF BYF")
// { first = ff
// let symbol ="Z30KP"
// let link ="Z30KP"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "HEKTSHEKTAŞ TİCARET T.A.Ş.")
// { first = ff
// let symbol ="HEKTS"
// let link ="HEKTS"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "FLAPFLAP KONGRE TOPLANTI HİZMETLERİ OTOMOTİV VE TURİZM A.Ş.")
// { first = ff
// let symbol ="FLAP"
// let link ="FLAP"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "POLTKPOLİTEKNİK METAL SANAYİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="POLTK"
// let link ="POLTK"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "GENTSGENTAŞ GENEL METAL SANAYİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="GENTS"
// let link ="GENTS"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "ENJSAENERJİSA ENERJİ A.Ş.")
// { first = ff
// let symbol ="ENJSA"
// let link ="ENJSA"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "FONETFONET BİLGİ TEKNOLOJİLERİ A.Ş.")
// { first = ff
// let symbol ="FONET"
// let link ="FONET"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "BAGFSBAGFAŞ BANDIRMA GÜBRE FABRİKALARI A.Ş.")
// { first = ff
// let symbol ="BAGFS"
// let link ="BAGFS"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "YATASYATAŞ YATAK VE YORGAN SANAYİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="YATAS"
// let link ="YATAS"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "TMSNTÜMOSAN MOTOR VE TRAKTÖR SANAYİ A.Ş.")
// { first = ff
// let symbol ="TMSN"
// let link ="TMSN"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "MARTIMARTI OTEL İŞLETMELERİ A.Ş.")
// { first = ff
// let symbol ="MARTI"
// let link ="MARTI"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "NUHCMNUH ÇİMENTO SANAYİ A.Ş.")
// { first = ff
// let symbol ="NUHCM"
// let link ="NUHCM"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "AYDEMAYDEM ENERJI")
// { first = ff
// let symbol ="AYDEM"
// let link ="AYDEM"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "YKSLNYUKSELEN CELIK")
// { first = ff
// let symbol ="YKSLN"
// let link ="YKSLN"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "ORCAYORCAY ORTAKOY CAY SANAYI")
// { first = ff
// let symbol ="ORCAY"
// let link ="ORCAY"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "ISKPLISIK PLASTIK")
// { first = ff
// let symbol ="ISKPL"
// let link ="ISKPL"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "ZPBDLZİRAAT PORTFÖY BIST BANKA DIŞI LİKİT 10 ENDEKSİ HSY BYF BYF")
// { first = ff
// let symbol ="ZPBDL"
// let link ="ZPBDL"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "FORMTFORMET METAL VE CAM")
// { first = ff
// let symbol ="FORMT"
// let link ="FORMT"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "KRONTKRON TELEKOMÜNİKASYON HİZMETLERİ A.Ş.")
// { first = ff
// let symbol ="KRONT"
// let link ="KRONT"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "KRTEKKARSU TEKSTİL SANAYİİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="KRTEK"
// let link ="KRTEK"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "SEKURSEKURO PLASTİK AMBALAJ SANAYİ A.Ş.")
// { first = ff
// let symbol ="SEKUR"
// let link ="SEKUR"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "Z30KEZIRAAT PORTFOY KATILIM 30 EA HSY BYF BYF")
// { first = ff
// let symbol ="Z30KE"
// let link ="Z30KE"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "TURSGTURKIYE SIGORTA")
// { first = ff
// let symbol ="TURSG"
// let link ="TURSG"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "SUMASSUMAS SUNI TAHTA")
// { first = ff
// let symbol ="SUMAS"
// let link ="SUMAS"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "TRGYOTORUNLAR GAYRİMENKUL YATIRIM ORTAKLIĞI A.Ş. REIT")
// { first = ff
// let symbol ="TRGYO"
// let link ="TRGYO"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "NTGAZNATURELGAZ")
// { first = ff
// let symbol ="NTGAZ"
// let link ="NTGAZ"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "YESILYEŞİL YATIRIM HOLDİNG A.Ş.")
// { first = ff
// let symbol ="YESIL"
// let link ="YESIL"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "ISFINİŞ FİNANSAL KİRALAMA A.Ş.")
// { first = ff
// let symbol ="ISFIN"
// let link ="ISFIN"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "EKIZEKİZ KİMYA SANAYİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="EKIZ"
// let link ="EKIZ"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "CLEBIÇELEBİ HAVA SERVİSİ A.Ş.")
// { first = ff
// let symbol ="CLEBI"
// let link ="CLEBI"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "ATSYHATLANTİS YATIRIM HOLDİNG A.Ş.")
// { first = ff
// let symbol ="ATSYH"
// let link ="ATSYH"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "KARSNKARSAN OTOMOTİV SANAYİİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="KARSN"
// let link ="KARSN"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "PEGYOPERA GAYRİMENKUL YATIRIM ORTAKLIĞI A.Ş. REIT")
// { first = ff
// let symbol ="PEGYO"
// let link ="PEGYO"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "OYAYOOYAK YATIRIM ORTAKLIĞI A.Ş.")
// { first = ff
// let symbol ="OYAYO"
// let link ="OYAYO"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "DGATEDATAGATE BİLGİSAYAR MALZEMELERİ TİCARET A.Ş.")
// { first = ff
// let symbol ="DGATE"
// let link ="DGATE"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "ADELADEL KALEMCİLİK TİCARET VE SANAYİ A.Ş.")
// { first = ff
// let symbol ="ADELA"
// let link ="ADELA"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "PGSUSPEGASUS HAVA TAŞIMACILIĞI A.Ş.")
// { first = ff
// let symbol ="PGSUS"
// let link ="PGSUS"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "TAVHLTAV HAVALİMANLARI HOLDİNG A.Ş.")
// { first = ff
// let symbol ="TAVHL"
// let link ="TAVHL"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "PINSUPINAR SU SANAYİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="PINSU"
// let link ="PINSU"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "ALARKALARKO HOLDİNG A.Ş.")
// { first = ff
// let symbol ="ALARK"
// let link ="ALARK"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "BASCMBAŞTAŞ BAŞKENT ÇİMENTO SANAYİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="BASCM"
// let link ="BASCM"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "TLMANTRABZON LIMAN")
// { first = ff
// let symbol ="TLMAN"
// let link ="TLMAN"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "OLMKMONDI OLMUKSAN KAGIT VE AMBALAJ")
// { first = ff
// let symbol ="OLMK"
// let link ="OLMK"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "AKSAAKSA AKRİLİK KİMYA SANAYİİ A.Ş.")
// { first = ff
// let symbol ="AKSA"
// let link ="AKSA"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "YEOTKYEO TEKNOLOJI ENERJI")
// { first = ff
// let symbol ="YEOTK"
// let link ="YEOTK"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "ZTM15ZİRAAT PORTFÖY YILDIZ PAZAR LİKİT TEMETTÜ ENDEKSİ HSY BYF BYF")
// { first = ff
// let symbol ="ZTM15"
// let link ="ZTM15"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "DOASDOĞUŞ OTOMOTİV SERVİS VE TİCARET A.Ş.")
// { first = ff
// let symbol ="DOAS"
// let link ="DOAS"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "BIMASBİM BİRLEŞİK MAĞAZALAR A.Ş.")
// { first = ff
// let symbol ="BIMAS"
// let link ="BIMAS"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "PAMELPAMEL ELEKTRIK")
// { first = ff
// let symbol ="PAMEL"
// let link ="PAMEL"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "OYAKCOYAK CIMENTO")
// { first = ff
// let symbol ="OYAK"
// let link ="OYAK"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "ULKERÜLKER BİSKÜVİ SANAYİ A.Ş.")
// { first = ff
// let symbol ="ULKER"
// let link ="ULKER"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "PSDTCPERGAMON STATUS DIŞ TİCARET A.Ş.")
// { first = ff
// let symbol ="PSDTC"
// let link ="PSDTC"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "EUKYOEURO KAPİTAL YATIRIM ORTAKLIĞI A.Ş.")
// { first = ff
// let symbol ="EUKYO"
// let link ="EUKYO"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "OSTIMOSTİM ENDÜSTRİYEL YATIRIMLAR VE İŞLETME A.Ş.")
// { first = ff
// let symbol ="OSTIM"
// let link ="OSTIM"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "HLGYOHALK GAYRİMENKUL YATIRIM ORTAKLIĞI A.Ş. REIT")
// { first = ff
// let symbol ="HLGYO"
// let link ="HLGYO"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "SELVASELVA GIDA")
// { first = ff
// let symbol ="SELVA"
// let link ="SELVA"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "ANHYTANADOLU HAYAT EMEKLİLİK A.Ş.")
// { first = ff
// let symbol ="ANHYT"
// let link ="ANHYT"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "DESPCDESPEC BİLGİSAYAR PAZARLAMA VE TİCARET A.Ş.")
// { first = ff
// let symbol ="DESPC"
// let link ="DESPC"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "IEYHOIŞIKLAR ENERJİ VE YAPI HOLDİNG A.Ş.")
// { first = ff
// let symbol ="IEYHO"
// let link ="IEYHO"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "VAKFNVAKIF FİNANSAL KİRALAMA A.Ş.")
// { first = ff
// let symbol ="VAKFN"
// let link ="VAKFN"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "ALKIMALKİM ALKALİ KİMYA A.Ş.")
// { first = ff
// let symbol ="ALKIM"
// let link ="ALKIM"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "SKTASSÖKTAŞ TEKSTİL SANAYİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="SKTAS"
// let link ="SKTAS"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "DOCODO & CO AKTIENGESELLSCHAFT")
// { first = ff
// let symbol ="DOCO"
// let link ="DOCO"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "ISMENİŞ YATIRIM MENKUL DEĞERLER A.Ş.")
// { first = ff
// let symbol ="ISMEN"
// let link ="ISMEN"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "ISYATİŞ YATIRIM ORTAKLIĞI A.Ş. BYF")
// { first = ff
// let symbol ="ISYAT"
// let link ="ISYAT"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "MAGENMARGUN ENERJI")
// { first = ff
// let symbol ="MAGEN"
// let link ="MAGEN"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "ZRE20ZİRAAT PORTFÖY RİSK EŞİT BANKA DIŞI 20 ENDEKSİ HSY BYF BYF")
// { first = ff
// let symbol ="ZRE20"
// let link ="ZRE20"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "PEKGYPEKER GMYO")
// { first = ff
// let symbol ="PEKGY"
// let link ="PEKGY"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "KZBGYKIZILBUK GYO")
// { first = ff
// let symbol ="KZBGY"
// let link ="KZBGY"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "ADESEADESE ALIŞVERİŞ MERKEZLERİ TİCARET A.Ş.")
// { first = ff
// let symbol ="ADESE"
// let link ="ADESE"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "AYCESALTIN YUNUS ÇEŞME TURİSTİK TESİSLER A.Ş.")
// { first = ff
// let symbol ="AYCES"
// let link ="AYCES"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "ULUFAULUSAL FAKTORING")
// { first = ff
// let symbol ="ULUFA"
// let link ="ULUFA"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "KCHOLKOÇ HOLDİNG A.Ş.")
// { first = ff
// let symbol ="KCHOL"
// let link ="KCHOL"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "VESBEVESTEL BEYAZ EŞYA SANAYİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="VESBE"
// let link ="VESBE"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "EDIPEDİP GAYRİMENKUL YATIRIM SANAYİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="EDIP"
// let link ="EDIP"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "ISGYOİŞ GAYRİMENKUL YATIRIM ORTAKLIĞI A.Ş. REIT")
// { first = ff
// let symbol ="ISGYO"
// let link ="ISGYO"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "ESCOMESCORT TEKNOLOJİ YATIRIM A.Ş.")
// { first = ff
// let symbol ="ESCOM"
// let link ="ESCOM"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "ATLASATLAS MENKUL KIYMETLER YATIRIM ORTAKLIĞI A.Ş.")
// { first = ff
// let symbol ="ATLAS"
// let link ="ATLAS"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "KORDSKORDSA TEKNİK TEKSTİL A.Ş.")
// { first = ff
// let symbol ="KORDS"
// let link ="KORDS"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "TBORGTÜRK TUBORG BİRA VE MALT SANAYİİ A.Ş.")
// { first = ff
// let symbol ="TBORG"
// let link ="TBORG"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "ETILRETİLER GIDA VE TİCARİ YATIRIMLAR SANAYİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="ETILR"
// let link ="ETILR"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "MARKAMARKA YATIRIM HOLDİNG A.Ş.")
// { first = ff
// let symbol ="MARKA"
// let link ="MARKA"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "MGROSMİGROS TİCARET A.Ş.")
// { first = ff
// let symbol ="MGROS"
// let link ="MGROS"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "VESTLVESTEL ELEKTRONİK SANAYİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="VESTL"
// let link ="VESTL"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "ECILCEİS ECZACIBAŞI İLAÇ, SINAİ VE FİNANSAL YATIRIMLAR SANAYİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="ECILC"
// let link ="ECILC"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "TUCLKTUĞÇELİK ALÜMİNYUM VE METAL MAMÜLLERİ SANAYİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="TUCLK"
// let link ="TUCLK"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "ZPX30ZİRAAT PORTFÖY BIST 30 ENDEKSİ HSY BYF BYF")
// { first = ff
// let symbol ="ZPX30"
// let link ="ZPX30"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "VKFYOVAKIF MENKUL KIYMET YATIRIM ORTAKLIĞI A.Ş.")
// { first = ff
// let symbol ="VKFYO"
// let link ="VKFYO"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "KATMRKATMERCİLER ARAÇ ÜSTÜ EKİPMAN SANAYİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="KATMR"
// let link ="KATMR"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "YGGYOYENİ GİMAT GAYRİMENKUL YATIRIM ORTAKLIĞI A.Ş.")
// { first = ff
// let symbol ="YGGYO"
// let link ="YGGYO"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "DOHOLDOĞAN ŞİRKETLER GRUBU HOLDİNG A.Ş.")
// { first = ff
// let symbol ="DOHOL"
// let link ="DOHOL"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "ASUZUANADOLU ISUZU OTOMOTİV SANAYİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="ASUZU"
// let link ="ASUZU"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "ZPT10ZIRAAT PORTFOY YP TEKNOLOJI ILETISIM 10 HY BYF BYF")
// { first = ff
// let symbol ="ZPT10"
// let link ="ZPT10"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "AKGRTAKSİGORTA A.Ş.")
// { first = ff
// let symbol ="AKGRT"
// let link ="AKGRT"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "Z30EAZİRAAT PORTFÖY BIST 30 EŞİT AĞIRLIKLI ENDEKSİ HSY BYF BYF")
// { first = ff
// let symbol ="Z30EA"
// let link ="Z30EA"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "KLNMATÜRKİYE KALKINMA BANKASI A.Ş.")
// { first = ff
// let symbol ="KLNMA"
// let link ="KLNMA"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "MTRYOMETRO YAT. ORT.")
// { first = ff
// let symbol ="MTRYO"
// let link ="MTRYO"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "MMCASMMC SANAYİ VE TİCARİ YATIRIMLAR A.Ş.")
// { first = ff
// let symbol ="MMCAS"
// let link ="MMCAS"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "ULUSEULUSOY ELEKTRİK İMALAT TAAHHÜT VE TİCARET A.Ş.")
// { first = ff
// let symbol ="ULUSE"
// let link ="ULUSE"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "AKYHOAKDENIZ YATIRIM HOLDING")
// { first = ff
// let symbol ="AKYHO"
// let link ="AKYHO"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// // newones 4
// if (r[0] == "USDTRQNB FİNANS PORTFÖY AMERİKAN DOLARI YABANC BYF BYF")
// { first = ff
// let symbol ="USDTR"
// let link ="USDTR"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "BIOENBIOTREND CEVRE VE ENERJI")
// { first = ff
// let symbol ="BIOEN"
// let link ="BIOEN"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "EKGYOEMLAK KONUT GAYRİMENKUL YATIRIM ORTAKLIĞI A.Ş. REIT")
// { first = ff
// let symbol ="EKGYO"
// let link ="EKGYO"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "DJISTQNB FİNANS PORTFÖY DOW JONES İSTANBUL 20 HSY BYF BYF")
// { first = ff
// let symbol ="DJIST"
// let link ="DJIST"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "HURGZHÜRRİYET GAZETECİLİK VE MATBAACILIK A.Ş.")
// { first = ff
// let symbol ="HURGZ"
// let link ="HURGZ"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "ZRGYOZIRAAT GMYO")
// { first = ff
// let symbol ="ZRGYO"
// let link ="ZRGYO"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "INDESİNDEKS BİLGİSAYAR SİSTEMLERİ MÜHENDİSLİK SANAYİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="INDES"
// let link ="INDES"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "GRNYOGARANTİ YATIRIM ORTAKLIĞI A.Ş.")
// { first = ff
// let symbol ="GRNYO"
// let link ="GRNYO"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "EMKELEMEK ELEKTRİK ENDÜSTRİSİ A.Ş.")
// { first = ff
// let symbol ="EMKEL"
// let link ="EMKEL"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "ROYALROYAL HALI İPLİK TEKSTİL MOBİLYA SANAYİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="ROYAL"
// let link ="ROYAL"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "ISBTRTÜRKİYE İŞ BANKASI A.Ş.")
// { first = ff
// let symbol ="ISBTR"
// let link ="ISBTR"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "KARYEKARTAL YEN. ENERJI")
// { first = ff
// let symbol ="KARYE"
// let link ="KARYE"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "ETYATEURO TREND YATIRIM ORTAKLIĞI A.Ş.")
// { first = ff
// let symbol ="ETYAT"
// let link ="ETYAT"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "AKSUEAKSU ENERJİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="AKSUE"
// let link ="AKSUE"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "HEDEFHEDEF HOLDING")
// { first = ff
// let symbol ="HEDEF"
// let link ="HEDEF"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "YONGAYONGA MOBİLYA SANAYİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="YONGA"
// let link ="YONGA"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "PRZMAPRİZMA PRES MATBAACILIK YAYINCILIK SANAYİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="PRZMA"
// let link ="PRZMA"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "PETKMPETKİM PETROKİMYA HOLDİNG A.Ş.")
// { first = ff
// let symbol ="PETKM"
// let link ="PETKM"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "VAKBNTÜRKİYE VAKIFLAR BANKASI T.A.O.")
// { first = ff
// let symbol ="VAKBN"
// let link ="VAKBN"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "LKMNHLOKMAN HEKİM ENGÜRÜSAĞ SAĞLIK, TURİZM, EĞİTİM HİZMETLERİ VE İNŞAAT TAAHHÜT A.Ş.")
// { first = ff
// let symbol ="LKMNH"
// let link ="LKMNH"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "MIPAZMİLPA TİCARİ VE SINAİ ÜRÜNLER PAZARLAMA SANAYİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="MIPAZ"
// let link ="MIPAZ"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "UTPYAUTOPYA TURİZM İNŞAAT İŞLETMECİLİK TİCARET A.Ş.")
// { first = ff
// let symbol ="UTPYA"
// let link ="UTPYA"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "HALKBTÜRKİYE HALK BANKASI A.Ş.")
// { first = ff
// let symbol ="HALKB"
// let link ="HALKB"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "NUGYONUROL GAYRİMENKUL YATIRIM ORTAKLIĞI A.Ş. REIT")
// { first = ff
// let symbol ="NUGYO"
// let link ="NUGYO"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "AYGAZAYGAZ A.Ş.")
// { first = ff
// let symbol ="AYGAZ"
// let link ="AYGAZ"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "AEFESANADOLU EFES BİRACILIK VE MALT SANAYİİ A.Ş.")
// { first = ff
// let symbol ="AEFES"
// let link ="AEFES"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "CCOLACOCA-COLA İÇECEK A.Ş.")
// { first = ff
// let symbol ="CCOLA"
// let link ="CCOLA"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "KTSKRKUTAHYA SEKER FABRIKASI")
// { first = ff
// let symbol ="KTSKR"
// let link ="KTSKR"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "PKENTPETROKENT TURİZM A.Ş.")
// { first = ff
// let symbol ="PKENT"
// let link ="PKENT"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "ANSGRANADOLU ANONİM TÜRK SİGORTA ŞİRKETİ")
// { first = ff
// let symbol ="ANSGR"
// let link ="ANSGR"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "SKBNKŞEKERBANK T.A.Ş.")
// { first = ff
// let symbol ="SKBNK"
// let link ="SKBNK"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "BTCIMBATIÇİM BATI ANADOLU ÇİMENTO SANAYİİ A.Ş.")
// { first = ff
// let symbol ="BTCIM"
// let link ="BTCIM"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "BRKOBİRKO BİRLEŞİK KOYUNLULULAR MENSUCAT TİCARET VE SANAYİ A.Ş.")
// { first = ff
// let symbol ="BRKOB"
// let link ="BRKOB"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "ORMAORMA ORMAN MAHSULLERİ İNTEGRE SANAYİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="ORMAO"
// let link ="ORMAO"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "QNBFLQNB FINANS FINANSAL KIRALAMA")
// { first = ff
// let symbol ="QNBFL"
// let link ="QNBFL"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "CANTECAN2 TERMIK")
// { first = ff
// let symbol ="CANTE"
// let link ="CANTE"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "ALBRKALBARAKA TÜRK KATILIM BANKASI A.Ş.")
// { first = ff
// let symbol ="ALBRK"
// let link ="ALBRK"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "ISKURTÜRKİYE İŞ BANKASI A.Ş.")
// { first = ff
// let symbol ="ISKUR"
// let link ="ISKUR"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "ARASEDOGU ARAS ENERJI")
// { first = ff
// let symbol ="ARASE"
// let link ="ARASE"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "MAVIMAVİ GİYİM SANAYİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="MAVIM"
// let link ="MAVIM"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "SOKMSOK MARKETLER TICARET")
// { first = ff
// let symbol ="SOKMS"
// let link ="SOKMS"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "IZTARİZ HAYVANCILIK TARIM VE GIDA SANAYİ TİCARET A.Ş.")
// { first = ff
// let symbol ="IZTAR"
// let link ="IZTAR"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "PKARTPLASTİKKART AKILLI KART İLETİŞİM SİSTEMLERİ SANAYİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="PKART"
// let link ="PKART"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "AVHOLAVRUPA YATIRIM HOLDİNG A.Ş.")
// { first = ff
// let symbol ="AVHOL"
// let link ="AVHOL"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "NTHOLNET HOLDİNG A.Ş.")
// { first = ff
// let symbol ="NTHOL"
// let link ="NTHOL"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "SAHOLHACI ÖMER SABANCI HOLDİNG A.Ş.")
// { first = ff
// let symbol ="SAHOL"
// let link ="SAHOL"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "YKBNKYAPI VE KREDİ BANKASI A.Ş.")
// { first = ff
// let symbol ="YKBNK"
// let link ="YKBNK"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "AGHOLANADOLU GRUBU HOLDING")
// { first = ff
// let symbol ="AGHOL"
// let link ="AGHOL"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "GMSTRQNB FİNANS PORTFÖY GÜMÜŞ BYF BYF")
// { first = ff
// let symbol ="GMSTR"
// let link ="GMSTR"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "SELECSELÇUK ECZA DEPOSU TİCARET VE SANAYİ A.Ş.")
// { first = ff
// let symbol ="SELEC"
// let link ="SELEC"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "ISCTRTÜRKİYE İŞ BANKASI A.Ş.")
// { first = ff
// let symbol ="ISCTR"
// let link ="ISCTR"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "BOBETBOGAZICI BETON SANAYI")
// { first = ff
// let symbol ="BOBET"
// let link ="BOBET"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "TKFENTEKFEN HOLDİNG A.Ş.")
// { first = ff
// let symbol ="TKFEN"
// let link ="TKFEN"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "OYYATOYAK YATIRIM MENKUL DEĞERLER A.Ş.")
// { first = ff
// let symbol ="OYYAT"
// let link ="OYYAT"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "RHEAGRHEA GİRİŞİM SERMAYESİ YATIRIM ORTAKLIĞI A.Ş.")
// { first = ff
// let symbol ="RHEAG"
// let link ="RHEAG"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "ZPLIBZİRAAT PORTFÖY BIST LİKİT BANKA ENDEKSİ HSY BYF BYF")
// { first = ff
// let symbol ="ZPLIB"
// let link ="ZPLIB"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "EUHOLEURO YATIRIM HOLDİNG A.Ş.")
// { first = ff
// let symbol ="EUHOL"
// let link ="EUHOL"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "AKBNKAKBANK T.A.Ş.")
// { first = ff
// let symbol ="AKBNK"
// let link ="AKBNK"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "MPARKMLP SAĞLIK HİZMETLERİ A.Ş.")
// { first = ff
// let symbol ="MPARK"
// let link ="MPARK"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "SANELSAN-EL MÜHENDİSLİK ELEKTRİK TAAHHÜT SANAYİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="SANEL"
// let link ="SANEL"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "TSKBTÜRKİYE SINAİ KALKINMA BANKASI A.Ş.")
// { first = ff
// let symbol ="TSKB"
// let link ="TSKB"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "IPEKEİPEK DOĞAL ENERJİ KAYNAKLARI ARAŞTIRMA VE ÜRETİM A.Ş.")
// { first = ff
// let symbol ="IPEKE"
// let link ="IPEKE"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "QNBFBQNB FINANSBANK")
// { first = ff
// let symbol ="QNBFB"
// let link ="QNBFB"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "EUYOEURO MENKUL KIYMET YATIRIM ORTAKLIĞI A.Ş.")
// { first = ff
// let symbol ="EUYO"
// let link ="EUYO"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "BANVTBANVİT BANDIRMA VİTAMİNLİ YEM SANAYİİ A.Ş.")
// { first = ff
// let symbol ="BANVT"
// let link ="BANVT"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "RTALBRTA LABORATUVARLARI BİYOLOJİK ÜRÜNLER İLAÇ VE MAKİNA SANAYİ TİCARET A.Ş.")
// { first = ff
// let symbol ="RTALB"
// let link ="RTALB"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "CRDFACREDITWEST FAKTORİNG A.Ş.")
// { first = ff
// let symbol ="CRDFA"
// let link ="CRDFA"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "ELITEELITE NATUREL ORGANIK GIDA")
// { first = ff
// let symbol ="ELITE"
// let link ="ELITE"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "MERITMERİT TURİZM YATIRIM VE İŞLETME A.Ş.")
// { first = ff
// let symbol ="MERIT"
// let link ="MERIT"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "COSMOCOSMOS YATIRIM HOLDİNG A.Ş.")
// { first = ff
// let symbol ="COSMO"
// let link ="COSMO"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "ALGYOALARKO GAYRİMENKUL YATIRIM ORTAKLIĞI A.Ş. REIT")
// { first = ff
// let symbol ="ALGYO"
// let link ="ALGYO"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "GLCVYGELECEK VARLIK YONETIMI")
// { first = ff
// let symbol ="GLCVY"
// let link ="GLCVY"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "GARFAGARANTİ FAKTORİNG A.Ş.")
// { first = ff
// let symbol ="GARFA"
// let link ="GARFA"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "KOZAAKOZA ANADOLU METAL MADENCİLİK İŞLETMELERİ A.Ş.")
// { first = ff
// let symbol ="KOZAA"
// let link ="KOZAA"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "SNKRNSENKRON GÜVENLİK VE İLETİŞİM SİSTEMLERİ A.Ş.")
// { first = ff
// let symbol ="SNKRN"
// let link ="SNKRN"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "ZGOLDZİRAAT PORTFÖY ALTIN KATILIM BYF BYF")
// { first = ff
// let symbol ="ZGOLD"
// let link ="ZGOLD"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "IHYAYİHLAS YAYIN HOLDİNG A.Ş.")
// { first = ff
// let symbol ="IHYAY"
// let link ="IHYAY"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "GLDTRQNB FİNANS PORTFÖY ALTIN BYF BYF")
// { first = ff
// let symbol ="GLDTR"
// let link ="GLDTR"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "AYESAYES ÇELİK HASIR VE ÇİT SANAYİ A.Ş.")
// { first = ff
// let symbol ="AYES"
// let link ="AYES"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "BRMENBİRLİK MENSUCAT TİCARET VE SANAYİ İŞLETMESİ A.Ş.")
// { first = ff
// let symbol ="BRMEN"
// let link ="BRMEN"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "ARDYZARD BILISIM TEKNOLOJILERI")
// { first = ff
// let symbol ="ARDYZ"
// let link ="ARDYZ"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "BERABERA HOLDING")
// { first = ff
// let symbol ="BERAB"
// let link ="BERAB"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "ALMADALTINYAG MADENCILIK VE ENERJI")
// { first = ff
// let symbol ="ALMAD"
// let link ="ALMAD"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "ATAGYATA GAYRİMENKUL YATIRIM ORTAKLIĞI A.Ş. REIT")
// { first = ff
// let symbol ="ATAGY"
// let link ="ATAGY"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "AKFGYAKFEN GAYRİMENKUL YATIRIM ORTAKLIĞI A.Ş. REIT")
// { first = ff
// let symbol ="AKFGY"
// let link ="AKFGY"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "SONMESÖNMEZ FİLAMENT SENTETİK İPLİK VE ELYAF SANAYİ A.Ş.")
// { first = ff
// let symbol ="SONME"
// let link ="SONME"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "GOZDEGÖZDE GİRİŞİM SERMAYESİ YATIRIM ORTAKLIĞI A.Ş.")
// { first = ff
// let symbol ="GOZDE"
// let link ="GOZDE"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "BALATBALATACILAR BALATACILIK SANAYİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="BALAT"
// let link ="BALAT"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "UFUKUFUK YATIRIM YÖNETİM VE GAYRİMENKUL A.Ş.")
// { first = ff
// let symbol ="UFUK"
// let link ="UFUK"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "ITTFHİTTİFAK HOLDİNG A.Ş.")
// { first = ff
// let symbol ="ITTFH"
// let link ="ITTFH"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "ULASULAŞLAR TURİZM YATIRIMLARI VE DAYANIKLI TÜKETİM MALLARI TİCARET PAZARLAMA A.Ş.")
// { first = ff
// let symbol ="ULAS"
// let link ="ULAS"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "ISSENISBIR SENTETIK DOKUMA")
// { first = ff
// let symbol ="ISSEN"
// let link ="ISSEN"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "KERVNKERVANSARAY YATIRIM HOLDİNG A.Ş.")
// { first = ff
// let symbol ="KERVN"
// let link ="KERVN"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "CASACASA EMTIA PETROL")
// { first = ff
// let symbol ="CASA"
// let link ="CASA"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "GMTASGIMAT MAGAZACILIK")
// { first = ff
// let symbol ="GMTAS"
// let link ="GMTAS"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "DIRITDİRİTEKS DİRİLİŞ TEKSTİL SANAYİ VE TİCARET A.Ş.")
// { first = ff
// let symbol ="DIRIT"
// let link ="DIRIT"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "ISBIRİŞBİR HOLDİNG A.Ş.")
// { first = ff
// let symbol ="ISBIR"
// let link ="ISBIR"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "TGSASTGS DIŞ TİCARET A.Ş.")
// { first = ff
// let symbol ="TGSAS"
// let link ="TGSAS"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "SEYKMSEYİTLER KİMYA SANAYİ A.Ş.")
// { first = ff
// let symbol ="SEYKM"
// let link ="SEYKM"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "BASGZBASKENT DOGALGAZ GMYO")
// { first = ff
// let symbol ="BASGZ"
// let link ="BASGZ"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "MERCNMERCAN KIMYA")
// { first = ff
// let symbol ="MERCN"
// let link ="MERCN"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "IDEASIDEAL FINANSAL TEKNOLOJILER")
// { first = ff
// let symbol ="IDEAS"
// let link ="IDEAS"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "AUDUSDAVUSTRALYA DOLARI / ABD DOLARI")
// { first = ff
// let symbol ="AUDUSD"
// let link ="AUDUSD"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "EURTRYEURO / TÜRK LIRASI")
// { first = ff
// let symbol ="EURTRY"
// let link ="EURTRY"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "EURUSDEURO / ABD DOLARI")
// { first = ff
// let symbol ="EURUSD"
// let link ="EURUSD"
// if (lang == "tr") {
// colafterrow(symbol, link, ff)
// }
// // else if (lang == "en") {
// // }
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "GBPUSDİNGILIZ STERLINI / ABD DOLARI")
// { first = ff
// let symbol ="GBPUSD"
// let link ="GBPUSD"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "NZDUSDYENI ZELANDA DOLARI / ABD DOLARI")
// { first = ff
// let symbol ="NZDUSD"
// let link ="NZDUSD"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "USDCADABD DOLARI / KANADA DOLARI")
// { first = ff
// let symbol ="USDCAD"
// let link ="USDCAD"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "USDCHFABD DOLARI / İSVIÇRE FRANKI")
// { first = ff
// let symbol ="USDCHF"
// let link ="USDCHF"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
// if (r[0] == "USDJPYABD DOLARI / JAPON YENI")
// { first = ff
// let symbol ="USDJPY"
// let link ="USDJPY"
// colafterrow(symbol, link, ff)
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, link +" ")}
})
var numberpara = DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().getParagraphs().length
// var par = DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().insertParagraph(numberpara, "Okan Özdemir")
// console.log(DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().getParagraphs().length)
}
let son, deg, ayyuksek, aydusuk, osrating, adx, muthisos, atr, cci, macd, mom, rsi, stokk, stokd, aroonu, aroona, boga, sar, bho10, harort
function colafterrow(symbol, link, ff) {
var cf = 1
let cguess = ws1.getRange(1, 1, 1, 200).getValues();
// cguess.repla
// getBody().replaceText("{DEĞ %}", son + " fiyatıyla yüzde " + deg + " değer kazanarak hareketine devam etti.")
cguess[0].forEach(function (c) {
// console.log( c, 987, cf)
if (c == 'DEĞ') {
deg = ws1.getRange(ff, cf).getValues();
// console.log(c, 88888, cf, 44, deg)
}
if (c == 'SON') {
son = ws1.getRange(ff, cf).getValues()
// console.log(c, 88888, cf, 442, ws1.getRange(ff, cf).getValues())
}
if (c == '1-AY YÜKSEK') {
ayyuksek = ws1.getRange(ff, cf).getValues();
// console.log(c, 88888, cf, 442, ws1.getRange(ff, cf).getValues())
}
if (c == '1-AY DÜŞÜK') {
aydusuk = ws1.getRange(ff, cf).getValues();
}
if (c == "OSİLATÖRLERİN RATİNG'İ") {
osrating = ws1.getRange(ff, cf).getValues();
}
if (c == "ADX") {
adx = ws1.getRange(ff, cf).getValues();
}
if (c == "MÜTHİŞ OSİLATÖR(AO)") {
muthisos = ws1.getRange(ff, cf).getValues();
}
if (c == "ATR") {
atr = ws1.getRange(ff, cf).getValues();
}
if (c == "CCI20") {
cci = ws1.getRange(ff, cf).getValues();
}
if (c == "MACD SEVİYESİ") {
macd = ws1.getRange(ff, cf).getValues();
}
if (c == "MOM") {
mom = ws1.getRange(ff, cf).getValues();
}
if (c == "RSI14") {
rsi = ws1.getRange(ff, cf).getValues();
}
if (c == "STOKASTİK K") {
// console.log(stokk, "stokk here")
stokk = ws1.getRange(ff, cf).getValues();
}
if (c == "STOKASTİK D") {
// console.log(stokd, "stokd here")
stokd = ws1.getRange(ff, cf).getValues();
}
cf += 1
})
al = ws1.getRange(ff, 1, 1, 120).getValues()[0]; // alvalues of found row
copyaftervalues(symbol, link, al)
}
function degfunction(x, symbol) {
if (deg > 0) {
var ran = Number(String(Math.random() * 1)[3])
if (lang == "tr") {
if (symbol == 'XAUTRYG' || symbol == 'Altın grafik') {
if (ran > 6) {
docFinal.getBody().replaceText("{DEĞ %}", String((son * dollar) / 31.10).substr(0, 6) + " fiyatıyla (" + deg + ") olumlu şekilde seansı kapattı.")
}
if (ran < 7 & ran > 3) {
docFinal.getBody().replaceText("{DEĞ %}", String((son * dollar) / 31.10).substr(0, 6) + " yüzde " + deg + " prim bularak kapandı.")
} if (ran < 4) {
docFinal.getBody().replaceText("{DEĞ %}", String((son * dollar) / 31.10).substr(0, 6) + " ile yüzde " + deg + " değer kazandı.")
}
}
else if (symbol == 'BTCUSD' || symbol == 'BTC USD') {
if (ran > 6) {
docFinal.getBody().replaceText("{DEĞ %}", son + " USD çizgisiyle yüzde " + deg + " değer kazanarak hareketine devam etti.")
}
if (ran < 7 & ran > 3) {
docFinal.getBody().replaceText("{DEĞ %}", son + " ABD dolarından yüzde " + deg + " prim bularak işlem görüyor.")
} if (ran < 4) {
docFinal.getBody().replaceText("{DEĞ %}", son + " USD'den yüzde " + deg + " değer kazanmış bulunuyor.")
}
}
else if (symbol == 'Borsa endex' || symbol == 'BIST 100' || symbol == 'BIST100') {
if (ran > 6) {
docFinal.getBody().replaceText("{DEĞ %}", son + " puanıyla yüzde " + deg + " değer kazanarak hareketine devam etti.")
}
if (ran < 7 & ran > 3) {
docFinal.getBody().replaceText("{DEĞ %}", son + " puanıyla yüzde " + deg + " prim bularak kapandı.")
} if (ran < 4) {
docFinal.getBody().replaceText("{DEĞ %}", son + " puanıyla yüzde " + deg + " değer kazandı.")
}
}
else {
if (ran > 6) {
docFinal.getBody().replaceText("{DEĞ %}", son + " fiyatıyla yüzde " + deg + " değer kazanarak hareketine devam etti.")
}
if (ran < 7 & ran > 3) {
docFinal.getBody().replaceText("{DEĞ %}", son + " fiyatıyla yüzde " + deg + " prim bularak kapandı.")
} if (ran < 4 & ran >1) {
docFinal.getBody().replaceText("{DEĞ %}", son + " işlem görerek yüzde " + deg + " değer kazandı.")
}
if (ran < 2) {
docFinal.getBody().replaceText("{DEĞ %}", son + " işlem (" + deg + ") görmektedir.")
}
}
}
}
if (deg < 0) {
var ran = Number(String(Math.random() * 1)[3])
if (lang == "tr") {
if (symbol == 'XAUTRYG' || symbol == 'Altın grafik') {
if (ran > 6) {
docFinal.getBody().replaceText("{DEĞ %}", String((son * dollar) / 31.10).substr(0, 6) + " ile fiyatıyla yüzde " + deg + " değer kaybetti.")
}
if (ran < 7 & ran > 3) {
docFinal.getBody().replaceText("{DEĞ %}", String((son * dollar) / 31.10).substr(0, 6) + " ile yüzde " + deg + " değer kaybetti.")
} if (ran < 4) {
docFinal.getBody().replaceText("{DEĞ %}", String((son * dollar) / 31.10).substr(0, 6) + " olarak yüzde " + deg + " düşüş göstererek hareketine devam ediyor.")
}
}
if (symbol == 'BTCUSD' || symbol == 'BTC USD') {
if (ran > 6) {
docFinal.getBody().replaceText("{DEĞ %}", son + " USD fiyatıyla yüzde " + deg + " ile an itibariyle değer kaybetti.")
}
if (ran < 7 & ran > 3) {
docFinal.getBody().replaceText("{DEĞ %}", son + " USD'den yüzde " + deg + " ile değer kaybı ile devam ediyor.")
} if (ran < 4 & ran >2) {
docFinal.getBody().replaceText("{DEĞ %}", son + " ABD doları fiyatıyla yüzde " + deg + " düşüş göstererek hareketine devam ediyor.")
} if (ran < 3) {
docFinal.getBody().replaceText("{DEĞ %}", son + " ABD doları fiyatıyla yüzde " + deg + " kayıpta.")
}
}
if (symbol == 'Borsa endex' || symbol == 'BIST 100' || symbol == 'BIST100') {
if (ran > 6) {
docFinal.getBody().replaceText("{DEĞ %}", son + " puanıyla yüzde " + deg + " an itibariyle değer kaybetti.")
}
if (ran < 7 & ran > 3) {
docFinal.getBody().replaceText("{DEĞ %}", son + " puanıyla yüzde " + deg + " değer kaybı ile devam ediyor.")
} if (ran < 4 & ran > 2) {
docFinal.getBody().replaceText("{DEĞ %}", son + " ile yüzde " + deg + " düşüş göstererek hareketine devam ediyor.")
} if (ran < 3) {
docFinal.getBody().replaceText("{DEĞ %}", son + " ile " + deg + " düşüş gösterdi.")
}
}
else {
if (ran > 6) {
docFinal.getBody().replaceText("{DEĞ %}", son + " fiyatıyla yüzde " + deg + " değer kaybetti.")
}
if (ran < 7 & ran > 3) {
docFinal.getBody().replaceText("{DEĞ %}", son + " fiyatıyla yüzde " + deg + " değer kaybetti.")
} if (ran == 4) {
docFinal.getBody().replaceText("{DEĞ %}", son + " fiyatıyla yüzde " + deg + " düşüş göstererek hareketine devam ediyor.")
} if (ran < 4) {
docFinal.getBody().replaceText("{DEĞ %}", son + " ile " + deg + " değer kaybı yaşandı.")
}
}
}
}
if (deg == 0) {
var ran = Number(String(Math.random() * 1)[3])
if (lang == "tr") {
if (symbol == 'XAUTRYG' || symbol == 'Altın grafik') {
if (ran > 6) {
docFinal.getBody().replaceText("{DEĞ %}", String((son * dollar) / 31.10).substr(0, 6) + " fiyatıyla devam ediyor.")
}
if (ran < 7 & ran > 3) {
docFinal.getBody().replaceText("{DEĞ %}", " grafiğine devam etmektedir.")
} if (ran < 4) {
docFinal.getBody().replaceText("{DEĞ %}", " bir kazanım sağlamadan işlemine devam ediyor.")
}
}
else if (symbol == 'BTCUSD' || symbol == 'BTC USD') {
if (ran > 6) {
docFinal.getBody().replaceText("{DEĞ %}", son + " USD fiyatıyla devam ediyor.")
}
if (ran < 7 & ran > 3) {
docFinal.getBody().replaceText("{DEĞ %}", son + " USD'de devam etmektedir.")
} if (ran < 4) {
docFinal.getBody().replaceText("{DEĞ %}", son + " USD'den bir kazanım sağlamadan işlemine devam ediyor.")
}
}
else if (symbol == 'Borsa endex' || symbol == 'BIST 100' || symbol == 'BIST100') {
if (ran > 6) {
docFinal.getBody().replaceText("{DEĞ %}", son + " seviyesinde açıldığı değerden kapandı.")
}
if (ran < 7 & ran > 3) {
docFinal.getBody().replaceText("{DEĞ %}", son + " ile açıldığı gibi aynı seviyede kapandı.")
} if (ran < 4) {
docFinal.getBody().replaceText("{DEĞ %}", son + " ile en azından kayıpsız bir gün geçirdi.")
}
}
else {
if (ran > 6) {
docFinal.getBody().replaceText("{DEĞ %}", son + " fiyatıyla değişiklik olmadan kapandı.")
}
if (ran < 7 & ran > 3) {
docFinal.getBody().replaceText("{DEĞ %}", son + " herhangi bir kayıp olmadı.")
} if (ran < 4) {
docFinal.getBody().replaceText("{DEĞ %}", son + " ile an itibariyle bir değer kazanımı olmadı.")
}
}
}
}
}
function ayyuksekfunction(ayyuksek, symbol) {
if (ayyuksek > 0) {
var ran = Number(String(Math.random() * 1)[3])
var value = String(Math.abs(son - ayyuksek)).substr(0, 4)
if (ran > 6) {
docFinal.getBody().replaceText("{1-AY YÜKSEK}", "Bir aylık en yüksek değeri " + ayyuksek + "'dir.'")
}
if (ran < 7 & ran > 3) {
docFinal.getBody().replaceText("{1-AY YÜKSEK}", "Bir aylık en yüksek " + ayyuksek + " değerini gördü.")
} if (ran < 4 & ran > 2) {
docFinal.getBody().replaceText("{1-AY YÜKSEK}", "Aylık olarak en yüksek olan " + ayyuksek + " değeri test edildi.")
}
if (ran < 3 & ran > 0) {
docFinal.getBody().replaceText("{1-AY YÜKSEK}", "Aylık zirvesi; " + ayyuksek + "'dir.")
}
}
}
let fo = 0
function aydusukfunction(aydusuk, symbol) {
fo += 1
console.log(symbol, fo)
if (aydusuk > 0) {
var ran = Number(String(Math.random() * 1)[3])
var value = String(((son / aydusuk) * 100) - 100).substr(0, 5)
if (symbol != "XAUTRYG" && symbol != "Dolar endeksi") {
if (ran > 6) {
docFinal.getBody().replaceText("{1-AY DÜŞÜK}", "Bir aydaki en düşük değeri " + aydusuk + "'dir.")
}
if (ran < 7 & ran > 3) {
docFinal.getBody().replaceText("{1-AY DÜŞÜK}", "Bir aylık en düşük değeri " + aydusuk + "'dir.")
} if (ran < 4) {
docFinal.getBody().replaceText("{1-AY DÜŞÜK}", "Bir aylık en düşük fiyatı " + aydusuk + " 'dır.")
}
} else {
//XAUTRYG
docFinal.getBody().replaceText("{1-AY DÜŞÜK}", "")
docFinal.getBody().replaceText("{ADX}", "")
docFinal.getBody().replaceText("{MÜTHİS OSİLATÖR}", "")
docFinal.getBody().replaceText("{CCI20}", "")
docFinal.getBody().replaceText("{MACD SEVİYESİ}", "")
docFinal.getBody().replaceText("{MOM}", "")
docFinal.getBody().replaceText("{RSI14}", "")
docFinal.getBody().replaceText("{STOKASTİK K}", "")
docFinal.getBody().replaceText("{ATR}", "")
}
}
}
function copyaftervalues(symbol, link, al) {
// docFinal = DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU");
let templateParagraphs12 = docTemplete12.getBody().getParagraphs();
templateParagraphs12.forEach(function (p) {
docFinal.getBody().appendParagraph(
p
.copy()
// .replaceText("{last}", x1)
)
})
function osratingfunction(osrating, symbol) {
if (osrating) {
var ran = Number(String(Math.random() * 1)[3])
// var value = String(((son/aydusuk)*100)-100).substr(0,5)
if (osrating == "Nötr") {
if (ran > 6) {
docFinal.getBody().replaceText("{OSİLATÖRLERİN RATİNG'İ}", "İndikatörler genel olarak Nötr sinyalleri vermektedir. ")
}
if (ran < 7 & ran > 3) {
docFinal.getBody().replaceText("{OSİLATÖRLERİN RATİNG'İ}", "İndikatörlerde netlik az. Osilatörler Nötr sinyaller alınmaktadır. ")
} if (ran < 4) {
docFinal.getBody().replaceText("{OSİLATÖRLERİN RATİNG'İ}", "Göstergeler mühim fakat belirsiz sinyal veriyor. ")
}
}
if (osrating == "Al") {
if (ran > 6) {
docFinal.getBody().replaceText("{OSİLATÖRLERİN RATİNG'İ}", "İndikatörlerden 0.1 - 0.5 arasında Al sinyali alınmaktadır. ")
}
if (ran < 7 & ran > 3) {
docFinal.getBody().replaceText("{OSİLATÖRLERİN RATİNG'İ}", "Gösterge güçlü olmasa da Al sinyali vermektedir. ")
} if (ran < 4) {
docFinal.getBody().replaceText("{OSİLATÖRLERİN RATİNG'İ}", "Osilatörlerde Nötr sinyalleri ön planda. ")
}
}
if (osrating == "Güçlü Al") {
if (ran > 6) {
docFinal.getBody().replaceText("{OSİLATÖRLERİN RATİNG'İ}", "Osilatörler 0.5 'in üzerinde Güçlü Al sinyalleri ile yer alıyor. ")
}
if (ran < 7 & ran > 3) {
docFinal.getBody().replaceText("{OSİLATÖRLERİN RATİNG'İ}", "Gösterge değerleri Güçlü Al yeşil sinyaller alınıyor. ")
} if (ran < 4) {
docFinal.getBody().replaceText("{OSİLATÖRLERİN RATİNG'İ}", "Osilatörler Güçlü Al sinyali sağlamaktadır. ")
}
}
if (osrating == "Sat") {
if (ran > 6) {
docFinal.getBody().replaceText("{OSİLATÖRLERİN RATİNG'İ}", "Göstergeler Sat sinyalleri vermekte ve kırmızı banda işaret etmektedir. ")
}
if (ran < 7 & ran > 3) {
docFinal.getBody().replaceText("{OSİLATÖRLERİN RATİNG'İ}", "Gösterge değerleri Sat sinyalleri alınmaktadır. ")
} if (ran < 4) {
docFinal.getBody().replaceText("{OSİLATÖRLERİN RATİNG'İ}", "Osilatörler Sat 'a işaret etmektedir. ")
}
}
if (osrating == "Güçlü Sat") {
if (ran > 6) {
docFinal.getBody().replaceText("{OSİLATÖRLERİN RATİNG'İ}", "Kırmızı tehlike çanları (orta ve uzun vade hariç) ile Güçlü Sat sinyalleri vermekte ve kırmızı banda işaret etmektedir. ")
}
if (ran < 7 & ran > 3) {
docFinal.getBody().replaceText("{OSİLATÖRLERİN RATİNG'İ}", "Kırmızı bölgede gösterge değerleri olumsuz. ")
} if (ran < 4) {
docFinal.getBody().replaceText("{OSİLATÖRLERİN RATİNG'İ}", "Kısaca birçok osilatör Güçlü Sat sinyallerini ortaya çıkarmaktadır. ")
}
}
}
}
function adxfunction(adx, symbol) {
if (String(adx).substr(String(adx).length - 1, String(adx).length - 1) == "N") {
var ran = Number(String(Math.random() * 1)[3])
if (ran > 6) {
docFinal.getBody().replaceText("{ADX}", "Ortalama Yön Endeksi (ADX) trendin Nötral durumuna dair bir izlenim veriyor.")
}
if (ran < 7 & ran > 3) {
docFinal.getBody().replaceText("{ADX}", "Ortalama Yön Endeksi trende dair Nötral (" + " " + adx + ") düzeydedir.")
} if (ran < 4) {
docFinal.getBody().replaceText("{ADX}", "ADX, trendin kararsız kaldığına (" + adx + ") işaret ediyor.")
}
}
if (String(adx).substr(String(adx).length - 1, String(adx).length - 1) == "A") {
var ran = Number(String(Math.random() * 1)[3])
if (ran > 6) {
docFinal.getBody().replaceText("{ADX}", "Ortalama Yön Endeksi (" + adx + ") Al çizgilerindedir.")
}
if (ran < 7 & ran > 3) {
docFinal.getBody().replaceText("{ADX}", "ADX göstergesi" + " " + adx + " Al sinyalleri sunmaktadır.")
} if (ran < 4) {
docFinal.getBody().replaceText("{ADX}", "ADX, trendin Al doyumuna ulaştığı" + " " + adx + " ile hareketine devam ettiğini belirtiyor.")
}
}
if (String(adx).substr(String(adx).length - 1, String(adx).length - 1) == "S") {
var ran = Number(String(Math.random() * 1)[3])
if (ran > 6) {
docFinal.getBody().replaceText("{ADX}", "Ortalama Yön Endeksi (ADX) trende dair Sat sinyali sunmaktadır.")
}
if (ran < 7 & ran > 3) {
docFinal.getBody().replaceText("{ADX}", "ADX, trend göstergesi " + " " + adx + " Sat sinyalindedir.")
} if (ran < 4) {
docFinal.getBody().replaceText("{ADX}", "ADX, trende dair Sat sinyali vermektedir." + " " + adx + " trendi kısa vadede Sat sinyali vermektedir.")
}
}
}
function muthisosfunction(musthisos) {
if (String(muthisos).substr(String(muthisos).length - 1, String(muthisos).length - 1) == "N") {
// console.log("String(muthisos).substr(String(muthisos).length-1,String(muthisos).length-1)")
var ran = Number(String(Math.random() * 1)[3])
if (ran > 6) {
docFinal.getBody().replaceText("{MÜTHİS OSİLATÖR}", "Müthiş osilatör Nötr olup" + " " + muthisos + " netlikten uzak denebilir.")
}
if (ran < 7 & ran > 3) {
docFinal.getBody().replaceText("{MÜTHİS OSİLATÖR}", "Nötr bir Müthiş Osilatör ile karşı karşıyayız.")
} if (ran < 4) {
docFinal.getBody().replaceText("{MÜTHİS OSİLATÖR}", "Müthiş osilatör net bir çerçeve sunmamaktadır.")
}
}
if (String(muthisos).substr(String(muthisos).length - 1, String(muthisos).length - 1) == "A") {
// console.log("String(muthisos).substr(String(muthisos).length-1,String(muthisos).length-1)")
var ran = Number(String(Math.random() * 1)[3])
if (ran > 6) {
docFinal.getBody().replaceText("{MÜTHİŞ OSİLATÖR}", "AO Sıfır Çizgisinin üzerinde bulunduğundan Boğa piyasasına dair Fincan Formasyonu oluşturmuştur. Ardışık iki kırmızı çubuk oluşturmuştur." + " " + muthisos + " Al sinyalinde netlik sağladı, denilebilir.")
}
if (ran < 7 & ran > 3) {
docFinal.getBody().replaceText("{MÜTHİŞ OSİLATÖR}", "Ardışık iki kırmızı çubuk oluşturmuştur." + " " + muthisos + " fincan tabağı ve değerler 0'dan büyük veya sıfır çizgisinden geçmekte.")
} if (ran < 4) {
docFinal.getBody().replaceText("{MÜTHİŞ OSİLATÖR}", "AO Sıfır Çizgisi Boğa piyasasına dair Fincan Formasyonu oluşturmuştur." + " " + muthisos + " Al sinyali vermektedir.")
}
}
if (String(muthisos).substr(String(muthisos).length - 1, String(muthisos).length - 1) == "S") {
var ran = Number(String(Math.random() * 1)[3])
if (ran > 6) {
docFinal.getBody().replaceText("{MÜTHİŞ OSİLATÖR}", "AO Sıfır Çizgisinin üzerinde bulunduğundan Boğa piyasasına dair Fincan Formasyonu oluşturmuştur. İki kırmızı çubuk oluşturmuştur ve ikincisinin önünde yeşil çubuk bulunmaktadır." + " " + muthisos + " Al sinyalinde netlik sağladı.")
}
if (ran < 7 & ran > 3) {
docFinal.getBody().replaceText("{MÜTHİŞ OSİLATÖR}", "İki kırmızı çubuk arasında ortalama bir yeşil mum bulunmaktadır." + " " + muthisos + " fincan tabağı ve değerler 0'dan büyük veya sıfır çizgisinden geçiyor.")
} if (ran < 4) {
docFinal.getBody().replaceText("{MÜTHİŞ OSİLATÖR}", "AO Sıfır Çizgisi Boğa piyasasına dair yeşil sonrası dinlenme noktası kırmızı çubuk oluşmuştur." + " " + muthisos + " Al sinyali vermektedir.")
}
}
if (String(muthisos).substr(String(muthisos).length - 1, String(muthisos).length - 1) == "S") {
var ran = Number(String(Math.random() * 1)[3])
if (ran > 6) {
docFinal.getBody().replaceText("{MÜTHİŞ OSİLATÖR}", "AO Sıfır Çizgisinin üzerinde bulunduğundan Boğa piyasasına dair Fincan Formasyonu oluşturmuştur. İki kırmızı çubuk oluşturmuştur ve ikincisinin önünde yeşil çubuk bulunmaktadır." + " " + muthisos + " Al sinyalinde netlik sağladı, denilebilir.")
}
if (ran < 7 & ran > 3) {
docFinal.getBody().replaceText("{MÜTHİŞ OSİLATÖR}", "İki kırmızı çubuk arasında ortalama bir yeşil mum bulunmaktadır." + " " + muthisos + " fincan tabağı ve değerler 0'dan büyük veya sıfır çizgisinin üzerinden geçiyor.")
} if (ran < 4) {
docFinal.getBody().replaceText("{MÜTHİŞ OSİLATÖR}", "AO Sıfır Çizgisi Boğa piyasasına dair yeşil sonrası dinlenme noktası kırmızı çubuk oluşmuştur." + " " + muthisos + " Al sinyali vermektedir.")
}
}
}
function atrfunction(atr) {
if (atr == 0) {
console.log(String(atr).substr(String(atr).length - 1, String(atr).length - 1))
var ran = Number(String(Math.random() * 1)[3])
if (ran > 6) {
docFinal.getBody().replaceText("{ATR}", "ATR, Nötr sinyalinde olup" + " " + atr + " seviyesindedir. ")
}
if (ran < 7 & ran > 3) {
docFinal.getBody().replaceText("{ATR}", "ATR'nin" + " " + atr + " Nötr sinyalde olduğu savunulabilir. ")
} if (ran < 4) {
docFinal.getBody().replaceText("{ATR}", "ATR " + atr + " " + + "belirsizliğini koruyor. ")
}
}
if (atr < 0) {
var ran = Number(String(Math.random() * 1)[3])
if (ran > 6) {
docFinal.getBody().replaceText("{ATR}", "ATR, Al sinyalindedir ve bu bir fırsat olabilir (" + "" + atr + "). ")
}
if (ran < 7 & ran > 3) {
docFinal.getBody().replaceText("{ATR}", "ATR" + " (" + atr + ") Al ile düşük volatiliteye ve giriş noktasına dair izlenim sunuyor. ")
} if (ran < 4) {
docFinal.getBody().replaceText("{ATR}", "ATR " + atr + " " + + "Al fırsatına dair bilgi sağlıyor. ")
}
}
if (atr > 0) {
var ran = Number(String(Math.random() * 1)[3])
if (ran > 6) {
docFinal.getBody().replaceText("{ATR}", " " + "ATR yani Ortalama Gerçek Aralık, Sat sinyalindedir ve yüksek volatiliteye " + atr + " işaret ediyor. ")
}
if (ran < 7 & ran > 3) {
docFinal.getBody().replaceText("{ATR}", " " + atr + " ile ATR " + "Sat ile varlıktan çıkışa işaret etmektedir. ")
} if (ran < 4) {
docFinal.getBody().replaceText("{ATR}", " " + "ATR " + atr + " " + "Sat fırsatına dair bilgi sağlıyor. ")
}
}
}
function ccifunction(cci) {
if (String(cci).substr(String(cci).length - 1, String(cci).length - 1) == "N") {
var ran = Number(String(Math.random() * 1)[3])
if (ran > 6) {
docFinal.getBody().replaceText("{CCI20}", "CCI20, momentum bazlı Emtia Kanal Endeksi" + " " + cci + " Nötr sinyaldedir. ")
}
if (ran < 7 & ran > 3) {
docFinal.getBody().replaceText("{CCI20}", "CCI20" + " " + cci + " ne Al ne Sat sinyali vermektedir.")
} if (ran < 4) {
docFinal.getBody().replaceText("{CCI20}", "CCI20, trend oluşumu ve geri çekilme hakkında bilgi verir." + " " + cci + " ancak Nötr sinyal alınmaktadır.")
}
}
if (String(cci).substr(String(cci).length - 1, String(cci).length - 1) == "A") {
var ran = Number(String(Math.random() * 1)[3])
if (ran > 6) {
docFinal.getBody().replaceText("{CCI20}", "CCI20, kanalın biraz yukarı taşınabileceğine dair" + " " + cci + " Al sinyalindedir. ")
}
if (ran < 7 & ran > 3) {
docFinal.getBody().replaceText("{CCI20}", "CCI20" + " " + cci + " fiyat ile zirveye dair bilgi sunuyor. ")
} if (ran < 4) {
docFinal.getBody().replaceText("{CCI20}", "Trend adeta pozitif, CCI" + " " + cci + " Al sinyalini göstermektedir. ")
}
}
if (String(cci).substr(String(cci).length - 1, String(cci).length - 1) == "S") {
var ran = Number(String(Math.random() * 1)[3])
if (ran > 6) {
docFinal.getBody().replaceText("{CCI20}", "CCI20, kanalı " + cci + " sinyalindedir. ")
}
if (ran < 7 & ran > 3) {
docFinal.getBody().replaceText("{CCI20}", "Aşırı satım bulunmaktadır." + " " + cci + " seviyesinde fiyata olumsuz yansıyabilir. ")
} if (ran < 4) {
docFinal.getBody().replaceText("{CCI20}", cci + " CCI20'de dibe yönelmenin önü düzeltme sonrası beklenebilir. ")
}
}
}
function macdfunction(macd) {
if (String(macd).substr(String(macd).length - 1, String(macd).length - 1) == "A") {
var ran = Number(String(Math.random() * 1)[3])
if (ran == 9) {
docFinal.getBody().replaceText("{MACD SEVİYESİ}", "Hareketli ortalama yakınsama sapması (MACD), bir momentum göstergesi olarak " + macd + " sinyalindedir. ")
}
if (ran == 8) {
docFinal.getBody().replaceText("{MACD SEVİYESİ}", "Al olarak devam eden Hareketli ortalama yakınsama sapması (MACD) sinyal çizgisinin yukarısından geçerek " + macd + " noktasında bulunmaktadır. ")
}
if (ran == 7) {
docFinal.getBody().replaceText("{MACD SEVİYESİ}", "MACD, muhtemel pozitif fiyatlanmaya delil olabilir." + " " + macd + " Al sinyali ile boğa piyasasına dair emareler sunuyor. ")
}
if (ran == 6) {
docFinal.getBody().replaceText("{MACD SEVİYESİ}", macd + " MACD, uzun vadede Al sinyali vermektedir. ")
}
if (ran == 5) {
docFinal.getBody().replaceText("{MACD SEVİYESİ}", "MACD," + " " + macd + " seviyesinde Al sinyaline dair bir içbakış sağlamaktadır. Sıkışık aralık olmadıkça Al sinyalleri doğru yorumlanabilir. ")
}
if (ran == 4) {
docFinal.getBody().replaceText("{MACD SEVİYESİ}", "Fiyat durgun seyretmedikçe MACD seviyesi " + macd + " 'de iki dip ve iki zirve ile yükseliş eğilimini anlatıyor. ")
}
if (ran == 3) {
docFinal.getBody().replaceText("{MACD SEVİYESİ}", "Al sinyalindeki MACD seviyesi" + " " + macd + " sinyalinde olup bu osilatörün bazen Yanlış Al verebildiği belirtilebilir. ")
}
if (ran == 2) {
docFinal.getBody().replaceText("{MACD SEVİYESİ}", "Fiyat eğiliminin tacı MACD seviyesi, " + " " + macd + " Al sinyali vermektedir. ")
}
if (ran == 1) {
docFinal.getBody().replaceText("{MACD SEVİYESİ}", "MACD seviyesi orta ve uzun vadede (gecikmeli bir gösterge olarak tanımlanır)" + " " + macd + " olarak Al sinyalinde olduğunu belirgin kılıyor. ")
}
if (ran < 1) {
docFinal.getBody().replaceText("{MACD SEVİYESİ}", "MACD seviyesi trende ışık tutabilir. Gecikmeli bir gösterge olsa da kullanılmasında yarar vardır." + " " + macd + " Al sinyalinde çizgisine devam etmektedir. ")
}
}
if (String(macd).substr(String(macd).length - 1, String(macd).length - 1) == "S") {
var ran = Number(String(Math.random() * 1)[3])
if (ran == 9) {
docFinal.getBody().replaceText("{MACD SEVİYESİ}", "Momentum göstergesi olan MACD " + macd + " sinyalindedir. ")
}
if (ran == 8) {
docFinal.getBody().replaceText("{MACD SEVİYESİ}", macd + ", MACD göstergesi, sinyal çizgisinin aşağısından geçti. Sat yönünde tetiklenen bir MACD var. ")
}
if (ran == 7) {
docFinal.getBody().replaceText("{MACD SEVİYESİ}", "MACD, işlemlerin fiyattaki yükseliş veya düşüş hareketinin güçlenip güçlenmediğini anlamalarına yardımcı olur." + " " + macd + " olarak son zamanlarda Sat sinyali ile ayı piyasasına dair sinyaller daha fazla alınır oldu. ")
}
if (ran == 6) {
docFinal.getBody().replaceText("{MACD SEVİYESİ}", "MACD " + macd + " Sat'ta bulunuyor. ")
}
if (ran == 5) {
docFinal.getBody().replaceText("{MACD SEVİYESİ}", "Sat veren MACD, fiyattaki iki yükselen tepe ve iki düşen dip oluşturduğundan " + macd + " 'dir. ")
}
if (ran == 4) {
docFinal.getBody().replaceText("{MACD SEVİYESİ}", "MACD seviyesi " + macd + " trending olası düşüş eğiliminin, bir süre devam edebileceğini göstermektedir. ")
}
if (ran == 3) {
docFinal.getBody().replaceText("{MACD SEVİYESİ}", "MACD seviyesi " + macd + " Sat sinyalinde aşırı alım/aşırı satıma dair riski ön plana çıkarıyor. ")
}
if (ran == 2) {
docFinal.getBody().replaceText("{MACD SEVİYESİ}", "MACD seviyesi, trend oluşumu aşağı yönde denebilir (" + macd + "). ")
}
if (ran == 1) {
docFinal.getBody().replaceText("{MACD SEVİYESİ}", "MACD seviyesi, eğilim olarak " + macd + " 'dir. ")
}
if (ran < 1) {
docFinal.getBody().replaceText("{MACD SEVİYESİ}", "MACD seviyesi orta ve uzun vadede " + macd + " Sat sinyalindedir. ")
}
}
}
function momfunction(mom) {
if (String(mom).substr(String(mom).length - 1, String(mom).length - 1) == "A") {
var ran = Number(String(Math.random() * 1)[3])
if (ran == 9) {
docFinal.getBody().replaceText("{MOM}", "Momentum (ivme), bir fiyat eğilimini ileri sürdürme kapasitesini ifade eder." + " " + mom + " Al sinyalindedir. ")
}
if (ran == 8) {
docFinal.getBody().replaceText("{MOM}", "Momentum, işlem hacmindeki ve diğer teknik göstergelerdeki değişikliklerle teyit edilebilen güçlü ivme, yükseliş veya düşüş eğiliminde devam edebilir." + " " + mom + " Al noktasındadır. ")
}
if (ran == 7) {
docFinal.getBody().replaceText("{MOM}", "İvme, yükseliş veya düşüş hareketinin güçlenip güçlenmediğini anlamamıza yardımcı olur." + " " + mom + " olarak Al sinyalindedir.")
}
if (ran == 6) {
docFinal.getBody().replaceText("{MOM}", "Momentum, yatırımcılar alım satımına dair bir işlem stratejisidir." + " " + mom + " Al sinyaline dair bilgi sunuyor.")
}
if (ran == 5) {
docFinal.getBody().replaceText("{MOM}", "Momentum işlem stratejisi," + " " + mom + " Al sinyalindedir. ")
}
if (ran == 4) {
docFinal.getBody().replaceText("{MOM}", "Momentum göstergesi seviyesi" + " " + mom + " Al ile hızın halen artabileceğine dair sinyal alınıyor.")
}
if (ran == 3) {
docFinal.getBody().replaceText("{MOM}", "Momentum" + " " + mom + " Al sinyali vermektedir. Fakat fiyat eğilimleri asla garanti edilmez.")
}
if (ran == 2) {
docFinal.getBody().replaceText("{MOM}", "Momentum Al olarak yeşil sinyalde olsa da" + " " + mom + "; bu, stratejinin son zamanlarda diğer yatırımcıların eğiliminin bir sonucu olduğunu ve yeni yatırımcılarla momentumun değişebileceğini bilmek gerekmektedir.")
}
if (ran == 1) {
docFinal.getBody().replaceText("{MOM}", "Mom " + mom + " " + "Al ile şimdilik yükselişe işaret ediyor.")
}
if (ran < 1) {
docFinal.getBody().replaceText("{MOM}", "Mom çok kullanılan salt bir teknik osilatör olarak " + mom + " " + "Al sinyali vermektedir.")
}
}
if (String(mom).substr(String(mom).length - 1, String(mom).length - 1) == "S") {
var ran = Number(String(Math.random() * 1)[3])
if (ran == 9) {
docFinal.getBody().replaceText("{MOM}", "Momentum (ivme), Sat sinyalindedir." + " (" + mom + ").")
}
if (ran == 8) {
docFinal.getBody().replaceText("{MOM}", "Momentum, işlem hacmindeki Satış'a işaret ediyor" + " (" + mom + ").")
}
if (ran == 7) {
docFinal.getBody().replaceText("{MOM}", "İvme, düşüşte." + " (" + mom + ").")
}
if (ran == 6) {
docFinal.getBody().replaceText("{MOM}", "Momentum, Sat sinyallerinde yer alıyor" + " (" + mom + ").")
}
if (ran == 5) {
docFinal.getBody().replaceText("{MOM}", "Momentum işlem stratejisi," + " " + mom + " Sat sinyalindedir. ")
}
if (ran == 4) {
docFinal.getBody().replaceText("{MOM}", "Momentum göstergesi seviye olarak" + " " + mom + " Sat sinyalindedir.")
}
if (ran == 3) {
docFinal.getBody().replaceText("{MOM}", "Momentum" + " " + mom + " Sat sinyali vermektedir.")
}
if (ran == 2) {
docFinal.getBody().replaceText("{MOM}", "Momentum Sat olarak kırmızı sinyaldedir" + " (" + mom + ").")
}
if (ran == 1) {
docFinal.getBody().replaceText("{MOM}", "Mom " + mom + " " + "Sat ile şimdilik olası düşüşe işaret ediyor.")
}
if (ran < 1) {
docFinal.getBody().replaceText("{MOM}", "Mom " + mom + " " + "Sat sinyali vermektedir.")
}
}
if (String(mom).substr(String(mom).length - 1, String(mom).length - 1) == "N" | String(mom).substr(String(mom).length - 1, String(mom).length - 1) == "—") {
docFinal.getBody().replaceText("{MOM}", "")
}
}
// UPDATE RSI sent
function rsifunction(x, y_replacing_taginpara, indicator) {
if (String(x).substr(String(x).length - 1, String(x).length - 1) == "A") {
var ran = Number(String(Math.random() * 1)[3])
if (ran == 9) {
docFinal.getBody().replaceText(y_replacing_taginpara, " " + indicator + " " + x + " sinyalindedir.")
}
if (ran == 8) {
docFinal.getBody().replaceText(y_replacing_taginpara, " " + indicator + " " + x + " noktasındadır.")
}
if (ran == 7) {
docFinal.getBody().replaceText(y_replacing_taginpara, " " + indicator + " " + x + " sinyalindedir.")
}
if (ran == 6) {
docFinal.getBody().replaceText(y_replacing_taginpara, " " + indicator + " " + x + " sinyaline dair bilgi sunuyor.")
}
if (ran == 5) {
docFinal.getBody().replaceText(y_replacing_taginpara, " " + indicator + " işlem stratejisi," + " " + x + " sinyalindedir. ")
}
if (ran == 4) {
docFinal.getBody().replaceText(y_replacing_taginpara, " " + indicator + " " + x + " ile olumluluğa dair sinyal alınıyor.")
}
if (ran == 3) {
docFinal.getBody().replaceText(y_replacing_taginpara, " " + indicator + " " + x + " sinyali vermektedir.")
}
if (ran == 2) {
docFinal.getBody().replaceText(y_replacing_taginpara, indicator + " yeşil sinyalde olsa da" + " " + x + ".")
}
if (ran == 1) {
docFinal.getBody().replaceText(y_replacing_taginpara, " " + indicator + " " + x + " " + "ile şimdilik yükselişe işaret ediyor.")
}
if (ran < 1) {
docFinal.getBody().replaceText(y_replacing_taginpara, " " + indicator + " " + x + " " + "sinyali vermektedir.")
}
}
if (String(x).substr(String(x).length - 1, String(x).length - 1) == "S") {
var ran = Number(String(Math.random() * 1)[3])
if (ran == 9) {
docFinal.getBody().replaceText(y_replacing_taginpara, " " + indicator + " " + x + " sinyalindedir.")
}
if (ran == 8) {
docFinal.getBody().replaceText(y_replacing_taginpara, " " + indicator + " " + x + " noktasındadır.")
}
if (ran == 7) {
docFinal.getBody().replaceText(y_replacing_taginpara, " " + indicator + " " + x + " sinyalindedir.")
}
if (ran == 6) {
docFinal.getBody().replaceText(y_replacing_taginpara, " " + indicator + " sinyaline dair bilgi sunuyor.")
}
if (ran == 5) {
docFinal.getBody().replaceText(y_replacing_taginpara, " " + indicator + " " + x + " sinyalindedir. ")
}
if (ran == 4) {
docFinal.getBody().replaceText(y_replacing_taginpara, " " + indicator + " " + x + " alınıyor.")
}
if (ran == 3) {
docFinal.getBody().replaceText(y_replacing_taginpara, " " + indicator + x + " sinyali vermektedir.")
}
if (ran == 2) {
docFinal.getBody().replaceText(y_replacing_taginpara, " " + indicator + " " + x + " vermektedir.")
}
if (ran == 1) {
docFinal.getBody().replaceText(y_replacing_taginpara, " " + indicator + " " + x + " " + " ile şimdilik yükselişe işaret ediyor.")
}
if (ran < 1) {
docFinal.getBody().replaceText(y_replacing_taginpara, " " + indicator + " " + x + " " + "sinyali vermektedir.")
}
}
if (String(x).substr(String(x).length - 1, String(x).length - 1) == "N") {
var ran = Number(String(Math.random() * 1)[3])
if (ran == 9) {
docFinal.getBody().replaceText(y_replacing_taginpara, " " + indicator + "" + " " + x + " sinyalindedir.")
}
if (ran == 8) {
docFinal.getBody().replaceText(y_replacing_taginpara, " " + indicator + " " + x + " belirsiz bir çizgidedir.")
}
if (ran == 7) {
docFinal.getBody().replaceText(y_replacing_taginpara, " " + indicator + " " + x + " sinyalindedir.")
}
if (ran == 6) {
docFinal.getBody().replaceText(y_replacing_taginpara, " " + indicator + " " + x + " sinyaline dair bilgi sunuyor.")
}
if (ran == 5) {
docFinal.getBody().replaceText(y_replacing_taginpara, " " + indicator + " " + x + " sinyalindedir. ")
}
if (ran == 4) {
docFinal.getBody().replaceText(y_replacing_taginpara, " " + indicator + " göstergesi seviyesi" + " " + x + " ile belirsiz sinyaller alınıyor.")
}
if (ran == 3) {
docFinal.getBody().replaceText(y_replacing_taginpara, " " + indicator + " " + x + " Nötrdür.")
}
if (ran == 2) {
docFinal.getBody().replaceText(y_replacing_taginpara, " " + indicator + " " + x + " olarak belirsizdir.")
}
if (ran == 1) {
docFinal.getBody().replaceText(y_replacing_taginpara, " " + indicator + x + " işaret ediyor.")
}
if (ran < 1) {
docFinal.getBody().replaceText(y_replacing_taginpara, " " + indicator + " " + x + " sinyali vermektedir.")
}
}
}
function stokastikkfunction(x, y_replacing_taginpara, indicator) {
if (String(x).substr(String(x).length - 1, String(x).length - 1) == "A") {
var ran = Number(String(Math.random() * 1)[3])
if (ran == 9) {
docFinal.getBody().replaceText(y_replacing_taginpara, " " + indicator + " " + x + " sinyalindedir.")
}
if (ran == 8) {
docFinal.getBody().replaceText(y_replacing_taginpara, " " + indicator + " " + x + " noktasındadır.")
}
if (ran == 7) {
docFinal.getBody().replaceText(y_replacing_taginpara, " " + indicator + " " + x + " 'dir.")
}
if (ran == 6) {
docFinal.getBody().replaceText(y_replacing_taginpara, indicator + "" + " " + x + " sinyaline dair bilgi sunuyor.")
}
if (ran == 5) {
docFinal.getBody().replaceText(y_replacing_taginpara, indicator + " işlem stratejisi," + " " + x + " sinyalindedir. ")
}
if (ran == 4) {
docFinal.getBody().replaceText(y_replacing_taginpara, " Göstergesi seviyesi" + " " + x + " ile hızın halen artabileceğine dair sinyal alınıyor.")
}
if (ran == 3) {
docFinal.getBody().replaceText(y_replacing_taginpara, " " + indicator + " " + x + " sinyali vermektedir.")
}
if (ran == 2) {
docFinal.getBody().replaceText(y_replacing_taginpara, " " + indicator + " olarak yeşil sinyalde olsa da" + " " + x + "'dir.")
}
if (ran == 1) {
docFinal.getBody().replaceText(y_replacing_taginpara, " " + indicator + x + " " + "ile şimdilik yükselişe işaret ediyor.")
}
if (ran < 1) {
docFinal.getBody().replaceText(y_replacing_taginpara, " " + indicator + " çok kullanılan salt bir teknik osilatör olarak " + x + " " + "sinyali vermektedir.")
}
}
if (String(x).substr(String(x).length - 1, String(x).length - 1) == "S") {
var ran = Number(String(Math.random() * 1)[3])
if (ran == 9) {
docFinal.getBody().replaceText(y_replacing_taginpara, indicator + " bir fiyat eğilimini ileri sürdürme kapasitesini ifade eder." + " " + x + " Al sinyalindedir.")
}
if (ran == 8) {
docFinal.getBody().replaceText(y_replacing_taginpara, indicator + " " + x + " noktasındadır.")
}
if (ran == 7) {
docFinal.getBody().replaceText(y_replacing_taginpara, indicator + " " + x + " 'dir.")
}
if (ran == 6) {
docFinal.getBody().replaceText(y_replacing_taginpara, indicator + " " + x + " Sat sinyaline dair bilgi sunuyor.")
}
if (ran == 5) {
docFinal.getBody().replaceText(y_replacing_taginpara, indicator + " işlem stratejisi," + " " + x + " sinyalindedir. ")
}
if (ran == 4) {
docFinal.getBody().replaceText(y_replacing_taginpara, indicator + " göstergesi seviyesi" + " " + x + " ile hızın halen artabileceğine dair sinyal alınıyor.")
}
if (ran == 3) {
docFinal.getBody().replaceText(y_replacing_taginpara, indicator + x + " sinyali vermektedir.")
}
if (ran == 2) {
docFinal.getBody().replaceText(y_replacing_taginpara, indicator + " " + x + " sinyalindedir")
}
if (ran == 1) {
docFinal.getBody().replaceText(y_replacing_taginpara, indicator + " " + x + " " + "satışları tetikliyor.")
}
if (ran < 1) {
docFinal.getBody().replaceText(y_replacing_taginpara, indicator + " teknik olarak " + x + " " + "sinyali vermektedir.")
}
}
if (String(x).substr(String(x).length - 1, String(x).length - 1) == "N") {
var ran = Number(String(Math.random() * 1)[3])
if (ran == 9) {
docFinal.getBody().replaceText(y_replacing_taginpara, indicator + " " + x + " sinyalindedir.")
}
if (ran == 8) {
docFinal.getBody().replaceText(y_replacing_taginpara, indicator + " " + x + " noktasındadır.")
}
if (ran == 7) {
docFinal.getBody().replaceText(y_replacing_taginpara, indicator + " " + x + " sinyalindedir.")
}
if (ran == 6) {
docFinal.getBody().replaceText(y_replacing_taginpara, indicator + " " + x + " sinyaline dair bilgi sunuyor.")
}
if (ran == 5) {
docFinal.getBody().replaceText(y_replacing_taginpara, indicator + " stratejik olarak," + " " + x + " sinyalindedir. ")
}
if (ran == 4) {
docFinal.getBody().replaceText(y_replacing_taginpara, indicator + " göstergesi seviyesi" + " " + x + " ile vasat bir sinyal alınıyor.")
}
if (ran == 3) {
docFinal.getBody().replaceText(y_replacing_taginpara, indicator + " " + x + " sinyali vermektedir.")
}
if (ran == 2) {
docFinal.getBody().replaceText(y_replacing_taginpara, indicator + " " + x + " boyutundadır.")
}
if (ran == 1) {
docFinal.getBody().replaceText(y_replacing_taginpara, indicator + " " + x + " ile şimdilik belirsiz düzeye işaret ediyor.")
}
if (ran < 1) {
docFinal.getBody().replaceText(y_replacing_taginpara, indicator + " " + x + " " + "sinyali vermektedir.")
}
}
}
function stokastikdfunction(x, y_replacing_taginpara, indicator) {
docFinal.getBody().replaceText(y_replacing_taginpara, "")
// if (String(x).substr(String(x).length - 1, String(x).length - 1) == "A") {
// var ran = Number(String(Math.random() * 1)[3])
// if (ran == 9) {
// docFinal.getBody().replaceText(y_replacing_taginpara, " " + indicator + " " + x + " sinyalindedir.")
// }
// if (ran == 8) {
// docFinal.getBody().replaceText(y_replacing_taginpara, " " + indicator+ " " + x + " noktasındadır.")
// }
// if (ran == 7) {
// docFinal.getBody().replaceText(y_replacing_taginpara, " " + indicator + " " + x + " 'dir.")
// }
// if (ran == 6) {
// docFinal.getBody().replaceText(y_replacing_taginpara, indicator + "" + " " + x + " sinyaline dair bilgi sunuyor.")
// }
// if (ran == 5) {
// docFinal.getBody().replaceText(y_replacing_taginpara, indicator + " işlem stratejisi," + " " + x + " sinyalindedir. ")
// }
// if (ran == 4) {
// docFinal.getBody().replaceText(y_replacing_taginpara, " Göstergesi seviyesi" + " " + x + " ile hızın halen artabileceğine dair sinyal alınıyor.")
// }
// if (ran == 3) {
// docFinal.getBody().replaceText(y_replacing_taginpara, " " + indicator + " " + x + " sinyali vermektedir.")
// }
// if (ran == 2) {
// docFinal.getBody().replaceText(y_replacing_taginpara, " " + indicator + " olarak yeşil sinyalde olsa da" + " " + x + "'dir.")
// }
// if (ran == 1) {
// docFinal.getBody().replaceText(y_replacing_taginpara, " " + indicator + x + " " + "ile şimdilik yükselişe işaret ediyor.")
// }
// if (ran < 1) {
// docFinal.getBody().replaceText(y_replacing_taginpara, " " + indicator + " çok kullanılan salt bir teknik osilatör olarak " + x + " " + "sinyali vermektedir.")
// }
// }
// if (String(x).substr(String(x).length - 1, String(x).length - 1) == "S") {
// var ran = Number(String(Math.random() * 1)[3])
// if (ran == 9) {
// docFinal.getBody().replaceText(y_replacing_taginpara, indicator + " bir fiyat eğilimini ileri sürdürme kapasitesini ifade eder." + " " + x + " Al sinyalindedir.")
// }
// if (ran == 8) {
// docFinal.getBody().replaceText(y_replacing_taginpara, indicator + " " + x + " noktasındadır.")
// }
// if (ran == 7) {
// docFinal.getBody().replaceText(y_replacing_taginpara, indicator + " " + x + " 'dir.")
// }
// if (ran == 6) {
// docFinal.getBody().replaceText(y_replacing_taginpara, indicator + " " + x + " Sat sinyaline dair bilgi sunuyor.")
// }
// if (ran == 5) {
// docFinal.getBody().replaceText(y_replacing_taginpara, indicator + " işlem stratejisi," + " " + x + " sinyalindedir. ")
// }
// if (ran == 4) {
// docFinal.getBody().replaceText(y_replacing_taginpara, indicator + " göstergesi seviyesi" + " " + x + " ile hızın halen artabileceğine dair sinyal alınıyor.")
// }
// if (ran == 3) {
// docFinal.getBody().replaceText(y_replacing_taginpara, indicator + x + " sinyali vermektedir.")
// }
// if (ran == 2) {
// docFinal.getBody().replaceText(y_replacing_taginpara, indicator + " " + x + " sinyalindedir")
// }
// if (ran == 1) {
// docFinal.getBody().replaceText(y_replacing_taginpara, indicator + " " + x + " " + "satışları tetikliyor.")
// }
// if (ran < 1) {
// docFinal.getBody().replaceText(y_replacing_taginpara, indicator + " teknik olarak " + x + " " + "sinyali vermektedir.")
// }
// }
// if (String(x).substr(String(x).length - 1, String(x).length - 1) == "N") {
// var ran = Number(String(Math.random() * 1)[3])
// if (ran == 9) {
// docFinal.getBody().replaceText(y_replacing_taginpara, indicator + " " + x + " sinyalindedir.")
// }
// if (ran == 8) {
// docFinal.getBody().replaceText(y_replacing_taginpara, indicator + " " + x + " noktasındadır.")
// }
// if (ran == 7) {
// docFinal.getBody().replaceText(y_replacing_taginpara, indicator + " " + x + " sinyalindedir.")
// }
// if (ran == 6) {
// docFinal.getBody().replaceText(y_replacing_taginpara, indicator + " " + x + " sinyaline dair bilgi sunuyor.")
// }
// if (ran == 5) {
// docFinal.getBody().replaceText(y_replacing_taginpara, indicator + " stratejik olarak," + " " + x + " sinyalindedir. ")
// }
// if (ran == 4) {
// docFinal.getBody().replaceText(y_replacing_taginpara, indicator + " göstergesi seviyesi" + " " + x + " ile vasat bir sinyal alınıyor.")
// }
// if (ran == 3) {
// docFinal.getBody().replaceText(y_replacing_taginpara, indicator + " " +x + " sinyali vermektedir.")
// }
// if (ran == 2) {
// docFinal.getBody().replaceText(y_replacing_taginpara, indicator + " " + x + " boyutundadır.")
// }
// if (ran == 1) {
// docFinal.getBody().replaceText(y_replacing_taginpara, indicator + " " + x + " ile şimdilik belirsiz düzeye işaret ediyor.")
// }
// if (ran < 1) {
// docFinal.getBody().replaceText(y_replacing_taginpara, indicator + " " + x + " " + "sinyali vermektedir.")
// }
// }
}
function aroonustfunction(x, y_replacing_taginpara, indicator) {
docFinal.getBody().replaceText(y_replacing_taginpara, "")
}
function aroonaltfunction(x, y_replacing_taginpara, indicator) {
docFinal.getBody().replaceText(y_replacing_taginpara, "")
}
function bogaayifunction(x, y_replacing_taginpara, indicator) {
docFinal.getBody().replaceText(y_replacing_taginpara, "")
}
function sarfunction(x, y_replacing_taginpara, indicator) {
docFinal.getBody().replaceText(y_replacing_taginpara, "")
}
function bho10function(x, y_replacing_taginpara, indicator) {
docFinal.getBody().replaceText(y_replacing_taginpara, "")
}
function hareketlifunction(x, y_replacing_taginpara, indicator) {
docFinal.getBody().replaceText(y_replacing_taginpara, "")
}
degfunction(deg, symbol)
ayyuksekfunction(ayyuksek, symbol)
aydusukfunction(aydusuk, symbol)
osratingfunction(osrating, symbol)
adxfunction(adx, symbol)
muthisosfunction(muthisos)
atrfunction(atr)
ccifunction(cci)
macdfunction(macd)
momfunction(mom)
rsifunction(rsi, "{RSI14}", "RSI")
stokastikkfunction(stokk, "{STOKASTİK K}", "Stokastik K")
stokastikdfunction(stokd, "{STOKASTİK D}", "Stokastik D")
aroonustfunction(aroonu, "{AROON ÜST}", "Arron up")
aroonaltfunction(aroona, "{AROON ALT}", "Arron down")
bogaayifunction(boga, "{BOĞAAYIGÜCÜ}", "Boğa ayı gücü")
sarfunction(sar, "{SAR}", "Sar")
bho10function(bho10, "{BHO10}", "Hareketli ortalamalar")
hareketlifunction(harort, "{HAREKETLİ ORTALAMALAR RATİNG'İ}", "Hareketli ortalamalar reytingi")
docFinal.getBody().replaceText("{date}", new Date())
docFinal.getBody().replaceText("{dateyear}", new Date().getFullYear())
docFinal.getBody().replaceText("{datemonth}", new Date().getMonth() + 1)
var now = new Date();
const datehere = new Intl.DateTimeFormat('tr-tr', { weekday: 'long' }).format(now)
if (datehere.includes("Pazar")) {
// console.log(999)
dateherecomment = "asd"
if (lang == "tr") {
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, "Bu hafta borsaların pozitif açması beklenebilir. ")
}
// else if (lang == "en") {
// DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().editAsText().insertText(0, "USA 10-year bond spread yield (%" + tenyearsbond + ")" + " to 2 year bond spread (%" + twoyearsbond + ") " +"). ")
// }
var par = DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().insertParagraph(0, "")
DocumentApp.openById("12VOHJKlpq137KhRZSlKz3qrO4hIo6ajhDv3-kk8TwjU").getBody().insertParagraph(0, "")
}
var style = {};
// style[DocumentApp.Attribute.FONT_SIZE] = 16;
// style[DocumentApp.Attribute] = 12;
style[DocumentApp.Attribute.LINK_URL] = "https://tr.tradingview.com/symbols/" + link + "/"
if (docFinal.getBody().findText("{link}")) {
docFinal.getBody().findText("{link}").getElement().setAttributes(0, 4, style)
}
docFinal.getBody().replaceText("{link}", symbol)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment